Hello, I would like to know how to disable the thumbnail inside the post in wordpress, that it only appear in the home after the post but inside the post it is disabled and does not appear
Hello, I would like to know how to disable the thumbnail inside the post in wordpress, that it only appear in the home after the post but inside the post it is disabled and does not appear
I would try to add the code below into your functions.php:
function remover_post_thumbnail($html, $post_id, $post_thumbnail_id, $size, $attr){
if(is_single($post_id)){
return '';
}
return $html;
}
add_filter( 'post_thumbnail_html', remover_post_thumbnail );