I want to remove the entry title in single posts and add it somewhere else. So far, I've managed to add the entry title somewhere else, but I'm having trouble removing it using PHP.
I've tried
function single_title() {
if (is_single()) { ?>
<?php }}
add_filter('thematic_postheader', 'single_title');
but it removes it on all the pages, including home, archive, etc.