WP HOOKS
filtrod 5.3.0

wp_date

Args 4Plik wp-includes/functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the date formatted based on the locale.

Parametry

ParametrTypOpis
$datestringFormatted date string.
$formatstringFormat to display the date.
$timestampintUnix timestamp.
$timezone\DateTimeZoneTimezone.

Wywołanie

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

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

Popularne w tej kategorii