Format de date dans WordPress Post
Posted on <?php the_time( 'l, F jS, Y' ); ?>.
Agreeable Anteater
Posted on <?php the_time( 'l, F jS, Y' ); ?>.
add_theme_support( 'post-formats', array('aside','video','gallery','chat'));
function rename_post_formats($translation, $text, $context, $domain) {
$names = array(
'Aside' => 'No Featured image',
'Chat' => 'Full Width',
);
if ($context == 'Post format') {
$translation = str_replace(array_keys($names), array_values($names), $text);
}
return $translation;
}
add_filter('gettext_with_context', 'rename_post_formats', 10, 4);
add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
if ( has_post_format( 'aside' )) {
// do something for asides
} elseif ( has_post_format( 'image' )) {
// something for images
} elseif ( has_post_format( 'video' )) {
// etc, etc
}
// etc, etc