How to disable thumbnail within post in wordpress

0

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

    
asked by anonymous 20.05.2017 / 02:38

1 answer

0

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 );
    
23.05.2017 / 17:26