I am just setting out and hoping to grasp how to remove the standard label that preceeds tags in the postfooter loop.
For ex: Tagged HTML, CSS, PHP
I would like to remove the "Tagged" label.
I am using this basic function:
function childtheme_posttags($posttags) {
return '<div class="containing">' . $posttags . '</div>';
}
add_filter('thematic_postfooter_posttags','childtheme_posttags');