Dans WordPress, j'utilise une fonction dans functions.php pour ne pas afficher certains messages (par catégorie) si un utilisateur n'est pas connecté:
function my_filter( $content ) {
$categories = array(
'news',
'opinions',
'sports',
'other',
);
if ( in_category( $categories ) ) {
if ( is_logged_in() ) {
return $content;
} else {
$content = '<p>Sorry, this post is only available to members</p> <a href="gateblogs.com/login"> Login </a>';
return $content;
}
} else {
return $content;
}
}
add_filter( 'the_content', 'my_filter' );
J'utilise un plugin (pas important pour ma question), mais en gros, je peux utiliser quelque chose comme https://gateblogs.com/login?redirect_to=https%3A%2F%2Fgateblogs.com%2Ftechnology%2Flinux-tutorials%2Fsending-mail-from-server
pour rediriger vers une page après une connexion réussie. Comment puis-je obtenir l'URL d'un message et l'appliquer au lien d'inscription?.
Remarque: La fonction provient de cette question .
J'ai compris comment faire avec la fonction get_the_permalink()
:
/* Protect Member Only Posts*/
function post_filter( $content ) {
$categories = array(
'coding',
'python',
'linux-tutorials',
'Swift',
'premium',
);
if ( in_category( $categories ) ) {
if ( is_user_logged_in() ) {
return $content;
} else {
$link = get_the_permalink();
$link = str_replace(':', '%3A', $link);
$link = str_replace('/', '%2F', $link);
$content = "<p>Sorry, this post is only available to members. <a href=\"gateblogs.com/login?redirect_to=$link\">Sign in/Register</a></p>";
return $content;
}
} else {
return $content;
}
}
add_filter( 'the_content', 'post_filter' );
Veuillez noter que le str_replace
est parce que je dois changer le lien pour que le plugin fonctionne.
Vous pouvez effectuer une opération conditionnelle et renvoyer l'URL de l'article en utilisant une get_the_permalink()
conjointement avec is_single()
:
add_filter( 'the_content', 'my_filter' );
function my_filter( $content ) {
// Check if we're inside the main loop in a single post page.
if ( is_single() && in_the_loop() && is_main_query() ) {
return $content . get_the_permalink();
}
return $content;
}