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
565      if ( !empty($_POST['insertonlybutton']) ) {
566           $href = $_POST['insertonly']['href'];
567           if ( !empty($href) && !strpos($href, '://') )
568                $href = "http://$href";
569           $title = esc_attr($_POST['insertonly']['title']);
570           if ( empty($title) )
571                $title = basename($href);
572           if ( !empty($title) && !empty($href) )
573                $html = "<a href='$href' >$title</a>";
574           $html = apply_filters('audio_send_to_editor_url', $html, $href, $title);
575           return media_send_to_editor($html);
576      }
577
578      if ( !empty($_POST) ) {
579           $return = media_upload_form_handler();
580
581           if ( is_string($return) )
582                return $return;
583           if ( is_array($return) )