WP HOOKS
filtrod 5.1.0

has_post_thumbnail

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

Opis — z kodu źródłowego

Filters whether a post has a post thumbnail.

Parametry

ParametrTypOpis
$has_thumbnailbooltrue if the post has a post thumbnail, otherwise false.
$postint | \WP_Post | nullPost ID or WP_Post object. Default is global <code>$post</code>.
$thumbnail_idint | falsePost thumbnail ID or false if the post does not exist.

Wywołanie

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

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

Popularne w tej kategorii