Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sanitize_trackback_urls

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
3363  */
3364 function sanitize_trackback_urls( $to_ping ) {
3365      $urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY );
3366      foreach ( $urls_to_ping as $k => $url ) {
3367           if ( !preg_match( '#^https?://.#i', $url ) )
3368                unset( $urls_to_ping[$k] );
3369      }
3370      $urls_to_ping = array_map( 'esc_url_raw', $urls_to_ping );
3371      $urls_to_ping = implode( "\n", $urls_to_ping );
3372      return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping );
3373 }
3374
3375 /**
3376  * Add slashes to a string or array of strings.
3377  *
3378  * This should be used when preparing data for core API that expects slashed data.
3379  * This should not be used to escape data going directly into an SQL query.
3380  *
3381  * @since 3.6.0