Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: audio_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
613                $href = "http://$href";
614
615           $title = esc_attr($_POST['insertonly']['title']);
616           if ( empty($title) )
617             $title = esc_attr( basename($href) );
618
619           if ( !empty($title) && !empty($href) )
620             $html = "<a href='" . esc_url($href) . "' >$title</a>";
621
622           $html = apply_filters('audio_send_to_editor_url', $html, $href, $title);
623
624           return media_send_to_editor($html);
625      }
626
627      if ( !empty($_POST) ) {
628           $return = media_upload_form_handler();
629
630           if ( is_string($return) )
631                return $return;