WP HOOKS
filtrod 3.1.0

get_the_terms

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

Opis — z kodu źródłowego

Filters the list of terms attached to the given post.

Parametry

ParametrTypOpis
$terms\WP_Term[] | \WP_ErrorArray of attached terms, or WP_Error on failure.
$post_idintPost ID.
$taxonomystringName of the taxonomy.

Wywołanie

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

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

Popularne w tej kategorii