Tag Archives: sidebars

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; } [...]

Read More »

Posted in Code snippets | Also tagged | Leave a comment