apply_filters( 'sanitize_trackback_urls', string $urls_to_ping, string $to_ping )
- Since
- 3.4.0
Filters a list of trackback URLs following sanitization.
Description
The string returned here consists of a space or carriage return-delimited list of trackback URLs.
Compatibility
- WordPress
- since 3.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$urls_to_pingstring- Sanitized space or carriage return separated URLs.
$to_pingstring- Space or carriage return separated URLs before sanitization.
Where this hook fires · 1
wp-includes/formatting.php:5766sanitize_trackback_urls()
Source code
* * @since 3.4.0 * * @param string $urls_to_ping Sanitized space or carriage return separated URLs. * @param string $to_ping Space or carriage return separated URLs before sanitization. */ return apply_filters( 'sanitize_trackback_urls', $urls_to_ping, $to_ping );} /** * Adds slashes to a string or recursively adds slashes to strings within an array. * * This should be used when preparing data for core API that expects slashed data.Changelog
Introduced in 3.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.