filtrod 5.2.0
wp_signature_url
Opis — z kodu źródłowego
Filters the URL where the signature for a file is located.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$signature_url | false | string | The URL where signatures can be found for a file, or false if none are known. |
$url | string | The URL being verified. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_signature_url', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_signature_url', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii