Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_{$meta_type}_metadata_by_mid

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
621       * The dynamic portion of the hook, `$meta_type`, refers to the meta
622       * object type (comment, post, term, or user). Returning a non-null value
623       * will effectively short-circuit the function.
624       *
625       * @since 5.0.0
626       *
627       * @param mixed $value    The value get_metadata_by_mid() should return.
628       * @param int   $meta_id  Meta ID.
629       */
630      $check = apply_filters( "get_{$meta_type}_metadata_by_mid", null, $meta_id );
631      if ( null !== $check ) {
632           return $check;
633      }
634
635      $meta = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $table WHERE $id_column = %d", $meta_id ) );
636
637      if ( empty( $meta ) ) {
638           return false;
639      }