Hello all:
What is the best way to edit the following code so that category menu shows up on all pages? Right now it only shows on the home page. TIA
// Add a drop down category menu
function childtheme_category_menu() { if(!is_page()) { ?>
<div id="category-access">
<div id="category-menu" class="menu">
<div class="menu-title"><?php _e('Featured Projects', 'thematic'); ?></div>
</div>
</div>
<?php } }
add_action('thematic_belowheader','childtheme_category_menu', 5);