filtrdynamicznyod 5.0.0
get_{$meta_type}_metadata_by_mid
Args 2Plik wp-includes/meta.php
Opis — z kodu źródłowego
Short-circuits the return value when fetching a meta field by meta ID.
The dynamic portion of the hook name, $meta_type, refers to the meta object type (blog, post, comment, term, user, or any other type with an associated meta table). Returning a non-null value will effectively short-circuit the function.
Possible hook names include:
get_blog_metadata_by_midget_post_metadata_by_midget_comment_metadata_by_midget_term_metadata_by_midget_user_metadata_by_mid
Hook dynamiczny — możliwe nazwy
get_blog_metadata_by_midget_comment_metadata_by_midget_post_metadata_by_midget_term_metadata_by_midget_user_metadata_by_midParametry
| Parametr | Typ | Opis |
|---|---|---|
$value | \stdClass | null | The value to return. |
$meta_id | int | Meta ID. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'get_{$meta_type}_metadata_by_mid', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'get_{$meta_type}_metadata_by_mid', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}