Noindex meta tag for blocked pages
-
Hello!
With such a little PHP knowledge I cannot get this simple code to work. The idea is to get a search engine robot block for all the pages that are blocked by wp-members plugin.
I am sure some of you will sort this out very quickly. So far I have this:
//Try to block search engines from blocked pages add_filter( 'wpmem_block', 'my_block_function' ); function my_block_function( $block ) { if ($block == true) { add_action('wp_head', 'my_function'); function my_function() { echo '<meta name="robots" content="noindex, nofollow">'; } } return $block; }
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Noindex meta tag for blocked pages’ is closed to new replies.