Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_buttons_context

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
441      wp_enqueue_media( array(
442           'post' => $post
443      ) );
444
445      $img = '<span class="wp-media-buttons-icon"></span> ';
446
447      echo '<a href="#" id="insert-media-button" class="button insert-media add_media" data-editor="' . esc_attr( $editor_id ) . '" title="' . esc_attr__( 'Add Media' ) . '">' . $img . __( 'Add Media' ) . '</a>';
448
449      // Don't use this filter. Want to add a button? Use the media_buttons action.
450      $legacy_filter = apply_filters('media_buttons_context', ''); // deprecated
451
452      if ( $legacy_filter ) {
453           // #WP22559. Close <a> if a plugin started by closing <a> to open their own <a> tag.
454           if ( 0 === stripos( trim( $legacy_filter ), '</a>' ) )
455                $legacy_filter .= '</a>';
456           echo $legacy_filter;
457      }
458 }
459 add_action( 'media_buttons', 'media_buttons' );