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