WP HOOKS
filtrod 4.0.0

wxr_export_skip_commentmeta

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

Opis — z kodu źródłowego

Filters whether to selectively skip comment 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 comment 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_commentmeta', 'twoja_funkcja', 10, 3 );

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

Popularne w tej kategorii