Hello -
I have a need to remove the navigation below the posts, but ONLY on the single post page. For instance, I have a category (Important Dates) that I have a link to that shows the lists of posts in that category and there are about 30. The problem is that I used the following code to remove the navigation below, which works great:
function remove_under_post_nav() {
remove_action('thematic_navigation_below','thematic_nav_below', 2);
}
add_action('init', 'remove_under_post_nav');
However, as one would know, this removes it for ALL posts and pages. I only want to remove it on the pages that displays the single post. I know it is simply adding some conditional code to the above, but I am a php newbie, so cannot figure it out. Thanks!