Remove `<code>` tag from translatable string in `trackback_url()`.
Add translator commment. Props ramiy. Fixes #34573. git-svn-id: https://develop.svn.wordpress.org/trunk@35546 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c98179fb82
commit
b1ae50d4d0
|
@ -1091,12 +1091,20 @@ function get_trackback_url() {
|
||||||
* for the result instead.
|
* for the result instead.
|
||||||
*/
|
*/
|
||||||
function trackback_url( $deprecated_echo = true ) {
|
function trackback_url( $deprecated_echo = true ) {
|
||||||
if ( $deprecated_echo !== true )
|
if ( true !== $deprecated_echo ) {
|
||||||
_deprecated_argument( __FUNCTION__, '2.5', __('Use <code>get_trackback_url()</code> instead if you do not want the value echoed.') );
|
_deprecated_argument( __FUNCTION__, '2.5',
|
||||||
if ( $deprecated_echo )
|
/* translators: %s: get_trackback_url() */
|
||||||
|
sprintf( __( 'Use %s instead if you do not want the value echoed.' ),
|
||||||
|
'<code>get_trackback_url()</code>'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $deprecated_echo ) {
|
||||||
echo get_trackback_url();
|
echo get_trackback_url();
|
||||||
else
|
} else {
|
||||||
return get_trackback_url();
|
return get_trackback_url();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue