WordPress Post Thumbnail Template Functions. Support for post thumbnails. Theme's functions.php must call add_theme_support( 'post-thumbnails' ) to use these.
$post = null
Sortie :
@param int|WP_Post|null $post Optional. Post ID or WP_Post object. Default is global `$post`. @return bool Whether the post has an image attached.
// Utilisation de la fonction has_post_thumbnail
$result = has_post_thumbnail($post = null);
if ($result) {
// Votre logique ici
}
Chargement des actualités...