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
390      wp_enqueue_media( array(
391           'post' => $post
392      ) );
393
394      $img = '<span class="wp-media-buttons-icon"></span> ';
395
396      echo '<a href="#" class="button insert-media add_media" data-editor="' . esc_attr( $editor_id ) . '" title="' . esc_attr__( 'Add Media' ) . '">' . $img . __( 'Add Media' ) . '</a>';
397
398      // Don't use this filter. Want to add a button? Use the media_buttons action.
399      $legacy_filter = apply_filters('media_buttons_context', ''); // deprecated
400
401      if ( $legacy_filter ) {
402           // #WP22559. Close <a> if a plugin started by closing <a> to open their own <a> tag.
403           if ( 0 === stripos( trim( $legacy_filter ), '</a>' ) )
404                $legacy_filter .= '</a>';
405           echo $legacy_filter;
406      }
407 }
408 add_action( 'media_buttons', 'media_buttons' );