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.7.2

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

  • /wp-includes/meta.php line 827
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    *
     * @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';