filtrod 3.5.0
post_link_category
Opis — z kodu źródłowego
Filters the category that gets used in the %category% permalink token.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$cat | \WP_Term | The category to use in the permalink. |
$cats | array | Array of all categories (WP_Term objects) associated with the post. |
$post | \WP_Post | The 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
}
// 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