Archived topic
How to use Elements to Insert noindex meta tag to bbPress User Profile Page head
1 reply · Started by Py on January 26, 2020
Hi
I want to add <META NAME=”ROBOTS” CONTENT=”NOINDEX, NOFOLLOW” /> to all the below bbPress User Profile pages
Example pages
https://domainname.com/users/displayname/
https://domainname.com/users/displayname/topics
https://domainname.com/users/displayname/engagement
https://domainname.com/users/displayname/replies
How can I do this with GeneratePress Elements?
Hi there,
Don't think it's possible in Elements, but you can use a function:
add_action( 'wp_head', function() {
if ( function_exists( 'bbp_is_single_user_profile' ) && bbp_is_single_user_profile() ) {
echo '<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW" />';
}
} );
Hope this helps :)