WP HOOKS
filtrdynamicznyod 2.2.0

theme_mod_{$name}

Args 1Plik wp-includes/theme.php

Opis — z kodu źródłowego

Filters the theme modification, or 'theme_mod', value.

The dynamic portion of the hook name, $name, refers to the key name of the modification array. For example, 'header_textcolor', 'header_image', and so on depending on the theme options.

Parametry

ParametrTypOpis
$current_modmixedThe value of the active theme modification.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'theme_mod_{$name}', 'twoja_funkcja' );

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

Popularne w tej kategorii