hey guys
does anyone know the action to remove the entry meta, the whole thing, as it is not really needed for a simple news section of a site i'm doing
thanks so much
hey guys
does anyone know the action to remove the entry meta, the whole thing, as it is not really needed for a simple news section of a site i'm doing
thanks so much
Easiest is probably in your child theme stylesheet .entry-meta { display:none; }
hi sowingseeds
yeh i don't like using display none, better to remove the action properly
try:
function empty_meta(){
//sound of one hand clapping
}
add_filter('thematic_postheader_postmeta','empty_meta');Is there a way to do this on the main blog pages, but on single posts, still have the content show?
use conditional logic:
function empty_meta($postmeta){
if(is_single()){
return $postmeta;
} else {
//sound of one hand clapping
}
}
add_filter('thematic_postheader_postmeta','empty_meta');This topic has been closed to new replies.