filtrod 3.1.0
wp_unique_post_slug_is_bad_hierarchical_slug
Opis — z kodu źródłowego
Filters whether the post slug would make a bad hierarchical post slug.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$bad_slug | bool | Whether the post slug would be bad in a hierarchical post context. |
$slug | string | The post slug. |
$post_type | string | Post type. |
$post_parent | int | Post parent ID. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_unique_post_slug_is_bad_hierarchical_slug', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_unique_post_slug_is_bad_hierarchical_slug', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}Popularne w tej kategorii