Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_{$meta_type}_meta

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
92       * The dynamic portion of the hook, `$meta_type`, refers to the meta object type
93       * (post, comment, term, user, or any other type with an associated meta table).
94       *
95       * @since 3.1.0
96       *
97       * @param int    $object_id   ID of the object metadata is for.
98       * @param string $meta_key    Metadata key.
99       * @param mixed  $_meta_value Metadata value. Serialized if non-scalar.
100       */
101      do_action( "add_{$meta_type}_meta", $object_id, $meta_key, $_meta_value );
102
103      $result = $wpdb->insert(
104           $table,
105           array(
106                $column      => $object_id,
107                'meta_key'   => $meta_key,
108                'meta_value' => $meta_value,
109           )
110      );