WP HOOKS
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_mid
  • get_post_metadata_by_mid
  • get_comment_metadata_by_mid
  • get_term_metadata_by_mid
  • get_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_mid

Parametry

ParametrTypOpis
$value\stdClass | nullThe value to return.
$meta_idintMeta 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
}