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
2047      if ( $title )
2048           $html = '<a href="' . esc_url( $src ) . '">' . $title . '</a>';
2049
2050      // Figure out what filter to run:
2051      $type = 'file';
2052      if ( ( $ext = preg_replace( '/^.+?\.([^.]+)$/', '$1', $src ) ) && ( $ext_type = wp_ext2type( $ext ) )
2053           && ( 'audio' == $ext_type || 'video' == $ext_type ) )
2054                $type = $ext_type;
2055
2056      $html = apply_filters( $type . '_send_to_editor_url', $html, $src, $title );
2057
2058      wp_send_json_success( $html );
2059 }
2060
2061 /**
2062  * Heartbeat API (experimental)
2063  *
2064  * Runs when the user is logged in.
2065  */