WP HOOKS
filtrod 3.5.0

post_link_category

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

Opis — z kodu źródłowego

Filters the category that gets used in the %category% permalink token.

Parametry

ParametrTypOpis
$cat\WP_TermThe category to use in the permalink.
$catsarrayArray of all categories (WP_Term objects) associated with the post.
$post\WP_PostThe post in question.

Wywołanie

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

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

Popularne w tej kategorii