Souhaitez-vous supprimer la prise en charge des vignettes pour un type d’article spécifique ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour supprimer la prise en charge des vignettes d’un type d’article spécifique dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier functions.php de votre thème ou dans un plugin spécifique à votre site:
add_action('init','remove_thumbnail_support'); function remove_thumbnail_support(){ remove_post_type_support('POST_TYPE','thumbnail'); }
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez consulter notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 7 meilleurs plugins de sondage WordPress et comment créer un formulaire de don 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