Category Archives: Code snippets
Remove sidebar
Add this function to functions.php to remove the sidebar from a Thematic child theme (either globally or conditionally): // Remove sidebars from feature template function remove_sidebar() { // We test if we are on the page template 'Feature' if (is_page_template('feature.php')) { // Yes, we are .. now we switch off the sidebar return FALSE; } [...]






Add the_post_thumbnail to post excerpts
Read More »