filtrod 2.1.0
wp_create_file_in_uploads
Opis — z kodu źródłowego
Filters the attachment file path after the custom header or background image is set.
Used for file replication.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$file | string | Path to the file. |
$attachment_id | int | Attachment ID. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_create_file_in_uploads', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_create_file_in_uploads', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii