Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$type}_send_to_editor_url

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
892                 * The dynamic portion of the hook name, `$type`, refers to the type
893                 * of media being sent.
894                 *
895                 * @since 3.3.0
896                 *
897                 * @param string $html  HTML markup sent to the editor.
898                 * @param string $src   Media source URL.
899                 * @param string $title Media title.
900                 */
901                $html = apply_filters( "{$type}_send_to_editor_url", $html, esc_url_raw( $src ), $title );
902           } else {
903                $align = '';
904                $alt   = esc_attr( wp_unslash( $_POST['alt'] ) );
905
906                if ( isset( $_POST['align'] ) ) {
907                     $align = esc_attr( wp_unslash( $_POST['align'] ) );
908                     $class = " class='align$align'";
909                }
910