trackback_url() WordPress Function
The trackback_url() function in WordPress is used to retrieve the URL of the current trackback. This function can be useful for displaying a link back to the trackback source.
trackback_url( bool $deprecated_echo = true ) #
Displays the current post’s trackback URL.
Parameters
- $deprecated_echo
(bool)(Optional)Not used.
Default value: true
Return
(void|string) Should only be used to echo the trackback URL, use get_trackback_url() for the result instead.
Source
File: wp-includes/comment-template.php
function trackback_url( $deprecated_echo = true ) {
if ( true !== $deprecated_echo ) {
_deprecated_argument(
__FUNCTION__,
'2.5.0',
sprintf(
/* translators: %s: get_trackback_url() */
__( 'Use %s instead if you do not want the value echoed.' ),
'<code>get_trackback_url()</code>'
)
);
}
if ( $deprecated_echo ) {
echo get_trackback_url();
} else {
return get_trackback_url();
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 0.71 | Introduced. |