/ Published in: PHP
URL: http://scottnix.com/2011/polishing-thematics-head/
Clean the Meta tag index, follow from the Thematic Framework, this is also a helpful template if you wanted to display categories with a index/follow if you do a e-com store with Thematic.
Expand |
Embed | Plain Text
// remove the index and follow tags from main pages. function childtheme_create_robots($content) { if (thematic_seo()) { if((is_home() && ($paged < 2 )) || is_front_page() || is_single() || is_page() || is_attachment()) { $content = ""; } elseif (is_search()) { $content = "\t"; $content .= "<meta name=\"robots\" content=\"noindex,nofollow\" />"; $content .= "\n\n"; } else { $content = "\t"; $content .= "<meta name=\"robots\" content=\"noindex,follow\" />"; $content .= "\n\n"; } return $content; } } add_filter('thematic_create_robots', 'childtheme_create_robots');
You need to login to post a comment.
