image_edit_thumbnails_separately

FILTER wp-admin\includes\image-edit.php (ligne 55) github
Shows the settings in the Image Editor that allow selecting to edit only the thumbnail of an image.

Paramètres

Entrée :
false
Sortie :
@param bool $show Whether to show the settings in the Image Editor. Default false.

Utilisation

// Modifier la valeur avec le filtre 'image_edit_thumbnails_separately'
add_filter('image_edit_thumbnails_separately', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(false) {
    // Modifier la valeur
    return false;
}

Actualités

Chargement des actualités...