filtrod 3.1.0
wp_unique_post_slug_is_bad_attachment_slug
Opis — z kodu źródłowego
Filters whether the post slug would make a bad attachment slug.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$bad_slug | bool | Whether the slug would be bad as an attachment slug. |
$slug | string | The post slug. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_unique_post_slug_is_bad_attachment_slug', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_unique_post_slug_is_bad_attachment_slug', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii