get_{$meta_type}_metadata_by_mid

get_{$meta_type}_metadata_by_mid

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('get_{$meta_type}_metadata_by_mid') is found 1 times:

  • /wp-includes/meta.php line 826
    	 *
    	 * @param stdClass|null $value   The value to return.
    	 * @param int           $meta_id Meta ID.
    	 */
    	$check = apply_filters( "get_{$meta_type}_metadata_by_mid", null, $meta_id );
    	if ( null !== $check ) {
    		return $check;
    	}
    
    	$id_column = ( 'user' === $meta_type ) ? 'umeta_id' : 'meta_id';