twentyeleven_attachment_size

FILTER wp-content\themes\twentyeleven\image.php (ligne 104) github
Filters the width for Twenty Eleven's default attachment size. This edits the image width, and the image height is limited to 1024 pixels.

Paramètres

Entrée :
848
Sortie :
@param int The width for the image attachment size in pixels. Default 848.

Utilisation

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

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

Actualités

Chargement des actualités...