Docs: Add translator comments for two `_deprecated_argument()` calls added to `get_wp_title_rss()` and `wp_title_rss()` in [35294].
See #31078. See #32246. Built from https://develop.svn.wordpress.org/trunk@35303 git-svn-id: http://core.svn.wordpress.org/trunk@35269 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6d9d18315d
commit
8549e76d56
|
@ -98,6 +98,7 @@ function get_default_feed() {
|
||||||
*/
|
*/
|
||||||
function get_wp_title_rss( $deprecated = '–' ) {
|
function get_wp_title_rss( $deprecated = '–' ) {
|
||||||
if ( '–' !== $deprecated ) {
|
if ( '–' !== $deprecated ) {
|
||||||
|
/* translators: 1: 'document_title_separator' filter name */
|
||||||
_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
|
_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,6 +124,7 @@ function get_wp_title_rss( $deprecated = '–' ) {
|
||||||
*/
|
*/
|
||||||
function wp_title_rss( $deprecated = '–' ) {
|
function wp_title_rss( $deprecated = '–' ) {
|
||||||
if ( '–' !== $deprecated ) {
|
if ( '–' !== $deprecated ) {
|
||||||
|
/* translators: 1: 'document_title_separator' filter name */
|
||||||
_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
|
_deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-35302';
|
$wp_version = '4.4-alpha-35303';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue