WP HOOKS
filtrod 4.6.0

wxr_export_skip_termmeta

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

Opis — z kodu źródłowego

Filters whether to selectively skip term meta used for WXR exports.

Returning a truthy value from the filter will skip the current meta object from being exported.

Parametry

ParametrTypOpis
$skipboolWhether to skip the current piece of term meta. Default false.
$meta_keystringCurrent meta key.
$metaobjectCurrent meta object.

Wywołanie

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

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

Popularne w tej kategorii