Aggiungendo questo snippet nel vostro tema WordPress visualizzerete il formato del post o la voce ‘standard’ se il formato del post non è disponibile.

 
< ?php
if ( get_post_format() ) {
echo get_post_format_string( get_post_format() );
} else {
ehco ‘Standard’;
}
?>
 

fonte: www.sastgroup.com ? Vai al post originale