Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: term_updated_messages

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
285 );
286
287 /**
288  * Filter the messages displayed when a tag is updated.
289  *
290  * @since 3.7.0
291  *
292  * @param array $messages The messages to be displayed.
293  */
294 $messages = apply_filters( 'term_updated_messages', $messages );
295
296 $message = false;
297 if ( isset( $_REQUEST['message'] ) && ( $msg = (int) $_REQUEST['message'] ) ) {
298      if ( isset( $messages[ $taxonomy ][ $msg ] ) )
299           $message = $messages[ $taxonomy ][ $msg ];
300      elseif ( ! isset( $messages[ $taxonomy ] ) && isset( $messages['_item'][ $msg ] ) )
301           $message = $messages['_item'][ $msg ];
302 }
303