Descrizione
Questo plugin è stato chiuso il 24 Luglio 2023 e non è più disponibile per il download. Motivazione: Violazione linee guida.
Recensioni
20 Settembre 2017
Redirect to login but no back redirection even we guess the wp-login/ url look like to indicate a future redirection.
My page have two level./partenaires/annuaire-partenaires/
I look at the developper code, it's really too simple, can cause many problems.
9 Settembre 2017
Exactly what I needed!
31 Gennaio 2017
This plugin does exactly what it needs to while remaining non-invasive. Utilizes the built in wordpress private page status. Brilliant. Thanks.
4 Ottobre 2016
hidden pages goes to login 😉
You can also get the function inside the plugin and use it your functions.php theme:
function private_content_redirect_to_login() {
global $wp_query,$wpdb;
if (is_404()) {
$private = $wpdb->get_row($wp_query->request);
$location = wp_login_url($_SERVER["REQUEST_URI"]);
if( 'private' == $private->post_status ) {
wp_safe_redirect($location);
exit;
}
}
}
add_action('template_redirect', 'private_content_redirect_to_login', 9);
3 Settembre 2016
Does it's trick, very helpful, thank you.
3 Settembre 2016
I've been searching for a little while for a plug-in doing a simple thing -that IMHO should be part of base WordPress capabilities-: redirect a visitor to login page when he/she tries to access a restricted page.
To my needs, it simple and effective.
Contributi e sviluppo
“Private Content Login Redirect” è un software open source. Le persone che hanno contribuito allo sviluppo di questo plugin sono indicate di seguito.
CollaboratoriTraduci “Private Content Login Redirect” nella tua lingua.
Ti interessa lo sviluppo?
Esplora il Codice segui il Repository SVN iscriviti al Log delle Modifiche. Puoi farlo tramite RSS con un lettore di feed.