/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Thematic Specific, easy way to get rid of duplicate H1's if a custom front page is used.
Expand |
Embed | Plain Text
// remove blog description from front page function childtheme_override_blogdescription() { $blogdesc = '"blog-description">' . get_bloginfo('description'); if (is_front_page()) { // silence } else { echo "\t\t<div id=$blogdesc</div>\n\n"; } }
You need to login to post a comment.
