Goal - to put a (# of comments link underneath post title in the postmeta area. I have been trying thru trial and error to get this right based on Chris's articles on the blog - but I cannot get it right!!
[php]//add comment link beneath title
function childtheme_postmeta($postmeta) {
return $postmeta;
$postmeta .= comments_number('no responses','one response','% responses');
}
add_filter('thematic_postheader_postmeta', 'childtheme_postmeta');[/php]
Help!??