filtrod 2.1.0
wp_get_attachment_thumb_url
Opis — z kodu źródłowego
Filters the attachment thumbnail URL.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$thumbnail_url | string | URL for the attachment thumbnail. |
$post_id | int | Attachment ID. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_get_attachment_thumb_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_get_attachment_thumb_url', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii