WP HOOKS
filtrod 4.4.0

export_wp_filename

Args 3Plik wp-admin/includes/export.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the export filename.

Parametry

ParametrTypOpis
$wp_filenamestringThe name of the file for download.
$sitenamestringThe site name.
$datestringToday's date, formatted.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'export_wp_filename', 'twoja_funkcja', 10, 3 );

function twoja_funkcja($param_1, $param_2, $param_3) {
	// Twój kod
}

Popularne w tej kategorii