WP HOOKS
filtrod 2.9.0

post_thumbnail_size

Args 2Plik wp-includes/post-thumbnail-template.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the post thumbnail size.

Parametry

ParametrTypOpis
$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).
$post_idintThe post ID.

Wywołanie

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

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

Popularne w tej kategorii