WP HOOKS
filtrod 5.6.0

wp_get_attachment_image

Args 5Plik wp-includes/media.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the HTML img element representing an image attachment.

Parametry

ParametrTypOpis
$htmlstringHTML img element or empty string on failure.
$attachment_idintImage attachment ID.
$sizestring | int[]Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
$iconboolWhether the image should be treated as an icon.
$attrstring[]Array of attribute values for the image markup, keyed by attribute name. See wp_get_attachment_image().

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_get_attachment_image', 'twoja_funkcja', 10, 5 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5) {
	// Twój kod
}

Popularne w tej kategorii