WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4832 | * |
| 4833 | * The string returned here consists of a space or carriage return-delimited list |
| 4834 | * of trackback URLs. |
| 4835 | * |
| 4836 | * @since 3.4.0 |
| 4837 | * |
| 4838 | * @param string $urls_to_ping Sanitized space or carriage return separated URLs. |
| 4839 | * @param string $to_ping Space or carriage return separated URLs before sanitization. |
| 4840 | */ |
| 4841 | return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping ); |
| 4842 | } |
| 4843 | |
| 4844 | /** |
| 4845 | * Add slashes to a string or array of strings. |
| 4846 | * |
| 4847 | * This should be used when preparing data for core API that expects slashed data. |
| 4848 | * This should not be used to escape data going directly into an SQL query. |
| 4849 | * |
| 4850 | * @since 3.6.0 |