Skip to content

Instantly share code, notes, and snippets.

@wpmarmite
Created January 24, 2019 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpmarmite/c49d65884d0832d276c32f5608edb574 to your computer and use it in GitHub Desktop.
Save wpmarmite/c49d65884d0832d276c32f5608edb574 to your computer and use it in GitHub Desktop.
Activer Gutenberg pour un CPT
<?php
add_filter('register_post_type_args', 'ajout_gut_cpt', 10, 2);
function ajout_gut_cpt($args, $post_type){
if ($post_type == 'mon_cpt'){
// Reprendre la liste des éléments et ajouter editor
$args['show_in_rest'] = true;
// Reprendre la liste des éléments et ajouter editor
$args['supports'] = array('title', 'thumbnail', 'editor');
}
return $args;
}
@ombres-et-lumieres
Copy link

merci pour l' info

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment