From eecfa3b4eddb91bc1dc2cea7e7608a04126a81bf Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 24 May 2019 22:59:52 +0000 Subject: [PATCH] Docs: Correct description for `$seplocation` parameter of `wp_title()`. Props mukesh27, vladlu. Fixes #47370. Built from https://develop.svn.wordpress.org/trunk@45406 git-svn-id: http://core.svn.wordpress.org/trunk@45217 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 0ec7336452..633619cf4d 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -1178,7 +1178,7 @@ function _wp_render_title_tag() { * @param string $sep Optional, default is '»'. How to separate the various items * within the page title. * @param bool $display Optional, default is true. Whether to display or retrieve title. - * @param string $seplocation Optional. Direction to display title, 'right'. + * @param string $seplocation Optional. Location of the separator ('left' or 'right'). * @return string|null String on retrieve, null when displaying. */ function wp_title( $sep = '»', $display = true, $seplocation = '' ) { @@ -1294,9 +1294,9 @@ function wp_title( $sep = '»', $display = true, $seplocation = '' ) { * * @since 2.0.0 * - * @param string $title Page title. - * @param string $sep Title separator. - * @param string $seplocation Location of the separator (left or right). + * @param string $title Page title. + * @param string $sep Title separator. + * @param string $seplocation Location of the separator ('left' or 'right'). */ $title = apply_filters( 'wp_title', $title, $sep, $seplocation ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f644938a04..ea6dc3ce24 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45405'; +$wp_version = '5.3-alpha-45406'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.