¿Quieres eliminar el soporte para miniaturas de un tipo de entrada específico? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para eliminar el soporte de miniaturas de un tipo de entrada específica en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
add_action('init','remove_thumbnail_support'); function remove_thumbnail_support(){ remove_post_type_support('POST_TYPE','thumbnail'); }
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si le ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 7 mejores plugins de WordPress para encuestas y cómo crear un formulario de donación en 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