filtrod 3.3.0
wxr_export_skip_postmeta
Opis — z kodu źródłowego
Filters whether to selectively skip post meta used for WXR exports.
Returning a truthy value from the filter will skip the current meta object from being exported.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$skip | bool | Whether to skip the current post meta. Default false. |
$meta_key | string | Current meta key. |
$meta | object | Current meta object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wxr_export_skip_postmeta', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wxr_export_skip_postmeta', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii