Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: video_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
702                $href = "http://$href";
703
704           $title = esc_attr($_POST['insertonly']['title']);
705         if ( empty($title) )
706             $title = esc_attr( basename($href) );
707
708           if ( !empty($title) && !empty($href) )
709             $html = "<a href='" . esc_url($href) . "' >$title</a>";
710
711           $html = apply_filters('video_send_to_editor_url', $html, $href, $title);
712
713           return media_send_to_editor($html);
714      }
715
716      if ( !empty($_POST) ) {
717           $return = media_upload_form_handler();
718
719           if ( is_string($return) )
720                return $return;