Hi, I'm trying to get the following function to only display on my Blog page, but having issues finding how to do it.
// add filtering content option
function content_filter() {
if( is_front_page() || is_single() ) {
add_filter();
}?>
<div id="content_filter">
<li><a href="" title="Title">Title</a>
</li>
</div>
<?php }
add_action('thematic_abovecontainer','content_filter');