wp_editor_expand

FILTER wp-admin\edit-form-advanced.php (ligne 53) github
Filters whether to enable the 'expand' functionality in the post editor.

Paramètres

Entrée :
true, $post_type
Sortie :
@param bool   $expand    Whether to enable the 'expand' functionality. Default true.
@param string $post_type Post type.

Utilisation

// 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;
}

Actualités

Chargement des actualités...