Filters whether to enable the 'expand' functionality in the post editor.
true, $post_type
Sortie :
@param bool $expand Whether to enable the 'expand' functionality. Default true. @param string $post_type Post type.
// Modifier la valeur avec le filtre 'wp_editor_expand'
add_filter('wp_editor_expand', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...