Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_send_to_editor

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
3323           $html = isset( $attachment['post_title'] ) ? $attachment['post_title'] : '';
3324           $rel  = $rel ? ' rel="attachment wp-att-' . $id . '"' : ''; // Hard-coded string, $id is already sanitized.
3325
3326           if ( ! empty( $url ) ) {
3327                $html = '<a href="' . esc_url( $url ) . '"' . $rel . '>' . $html . '</a>';
3328           }
3329      }
3330
3331      /** This filter is documented in wp-admin/includes/media.php */
3332      $html = apply_filters( 'media_send_to_editor', $html, $id, $attachment );
3333
3334      wp_send_json_success( $html );
3335 }
3336
3337 /**
3338  * Ajax handler for sending a link to the editor.
3339  *
3340  * Generates the HTML to send a non-image embed link to the editor.
3341  *