WP HOOKS
filtrod 6.5.0

font_dir

Args 1Plik wp-includes/fonts.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the fonts directory data.

This filter allows developers to modify the fonts directory data.

Parametry

ParametrTypOpis
$font_dirarray{ Array of information about the font upload directory. @type string $path Base directory and subdirectory or full path to the fonts upload directory. @type string $url Base URL and subdirectory or absolute URL to the fonts upload directory. @type string $subdir Subdirectory @type string $basedir Path without subdir. @type string $baseurl URL path without subdir. @type string|false $error False or error message. }

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'font_dir', 'twoja_funkcja' );

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

Popularne w tej kategorii