Deseja remover o suporte a miniaturas de um tipo de postagem específico? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para remover o suporte a miniaturas de um tipo de postagem específico no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
add_action('init','remove_thumbnail_support'); function remove_thumbnail_support(){ remove_post_type_support('POST_TYPE','thumbnail'); }
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 7 melhores plug-ins de enquete do WordPress e como criar um formulário de doação no WordPress.
Can you also remove the thumbnail support for a specific page template?
If you don’t want to display a thumbnail within a page template you should just remove the code that adds your thumbnails from the template.
John
function zd_remove(){
$post_id = $_GET[‘post’] ? $_GET[‘post’] : $_POST[‘post_ID’] ;
// checks for post/page ID
if ($post_id = array(10,11,12,13))
{
remove_post_type_support( $post_type, $supports );
}
}
add_action(‘add_meta_boxes’, ‘zd_remove’);
I dun have the functions.php in my wordpress… Can assist?
Create a text file called functions.php and upload to your theme folder with the code in this pastbin sample http://pastebin.com/rwziqmF7
Hi Kevin, I’m a regular WP Snipp reader and I have to ask this, on the top right of your sidebar you have the single best looking RSS/Facebook display I’ve ever seen. Is that a plugin or did you code it yourself?
Hi James,
Very nice to hear thanks! This was not a plugin I wrote the HTML, CSS and the icons I got from a few free icon sources and I created a few like design poke and design bump. I posted the code and a link to the images on pastebin if you wanted to do something similar.
http://pastebin.com/5MpkVXKv