De nombreux thèmes (dont Twenty Seventeen) affichent par défaut l’image à la une en début d’article. Pour supprimer cet affichage, vous pouvez modifier le fichier single.php
ou coller ce code dans le fichier functions.php
de votre thème enfant.
Code
add_filter( 'post_thumbnail_html', 'ravs_hide_featured_image_on_post', 10, 5 );
function ravs_hide_featured_image_on_post( $html, $post_id, $post_thumbnail_id, $size, $attr ){
if( is_single() )
$html =''; // hide featured image in post
return $html;
}
Spelling error report
The following text will be sent to our editors: