get_comment_metadata_by_mid
Short-circuits the return value when fetching a meta field by meta ID.
This is one of the variants of the dynamic hook get_(meta_type)_metadata_by_mid
Usage
add_filter( 'get_comment_metadata_by_mid', 'wp_kama_get_comment_metadata_by_mid_filter', 10, 2 );
/**
* Function for `get_comment_metadata_by_mid` filter-hook.
*
* @param stdClass|null $value The value to return.
* @param int $meta_id Meta ID.
*
* @return stdClass|null
*/
function wp_kama_get_comment_metadata_by_mid_filter( $value, $meta_id ){
// filter...
return $value;
}
- $value(stdClass|null)
- The value to return.
- $meta_id(int)
- Meta ID.
Changelog
| Since 5.0.0 | Introduced. |
Where the hook is called
get_comment_metadata_by_mid
wp-includes/meta.php 858
$check = apply_filters( "get_{$meta_type}_metadata_by_mid", null, $meta_id );