WP HOOKS
filtrdynamicznyod 5.0.0

update_{$meta_type}_metadata_by_mid

Args 4Plik wp-includes/meta.php

Opis — z kodu źródłowego

Short-circuits updating metadata of a specific type 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:

  • update_blog_metadata_by_mid
  • update_post_metadata_by_mid
  • update_comment_metadata_by_mid
  • update_term_metadata_by_mid
  • update_user_metadata_by_mid

Hook dynamiczny — możliwe nazwy

update_blog_metadata_by_midupdate_comment_metadata_by_midupdate_post_metadata_by_midupdate_term_metadata_by_midupdate_user_metadata_by_mid

Parametry

ParametrTypOpis
$checknull | boolWhether to allow updating metadata for the given type.
$meta_idintMeta ID.
$meta_valuemixedMeta value. Must be serializable if non-scalar.
$meta_keystring | falseMeta key, if provided.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'update_{$meta_type}_metadata_by_mid', 'twoja_funkcja', 10, 4 );

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