Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_ping

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
1801                if ( $test = @parse_url($link_test) ) {
1802                     if ( isset($test['query']) )
1803                          $post_links[] = $link_test;
1804                     elseif ( isset( $test['path'] ) && ( $test['path'] != '/' ) && ( $test['path'] != '' ) )
1805                          $post_links[] = $link_test;
1806                }
1807           endif;
1808      endforeach;
1809
1810      do_action_ref_array('pre_ping', array(&$post_links, &$pung));
1811
1812      foreach ( (array) $post_links as $pagelinkedto ) {
1813           $pingback_server_url = discover_pingback_server_uri( $pagelinkedto );
1814
1815           if ( $pingback_server_url ) {
1816                @ set_time_limit( 60 );
1817                 // Now, the RPC call
1818                $pagelinkedfrom = get_permalink($post_ID);
1819