Hay una forma muy simple de proteger el acceso a un blog de wordpress, haciendo requerido el inicio de sesión del usuario. Este simple plugin hace la tarea: < ?php /* Plugin Name: Blog Users Only Plugin Plugin URI: http://www.silencesoft.net Description: This plugin allows you to make your WordPress site accessible to logged in and registered users only. Author: Byron Herrera Version: 0.1 Author URI: http://byronh.axul.net/ License: Free. Warranties: None. */ function registered_subscribers_only() { // Checks if a user is logged in, if not redirects them to the login page if (!current_user_can('level_0')) { nocache_headers(); header("HTTP/1.1 302 Moved Temporarily"); header('Location: '…
1 comentarioNotas y apuntes de a ratos...