diff --git a/wp-content/themes/twentyseventeen/inc/template-tags.php b/wp-content/themes/twentyseventeen/inc/template-tags.php index f7720a6804..6ea4df09bc 100644 --- a/wp-content/themes/twentyseventeen/inc/template-tags.php +++ b/wp-content/themes/twentyseventeen/inc/template-tags.php @@ -125,7 +125,8 @@ endif; /** * Display a front page section. * - * @global WP_Post $post Global post object. + * @global int|string $twentyseventeencounter Front page section counter. + * @global WP_Post $post Global post object. * * @param WP_Customize_Partial $partial Partial associated with a selective refresh request. * @param int $id Front page section to display. diff --git a/wp-content/themes/twentythirteen/functions.php b/wp-content/themes/twentythirteen/functions.php index f74a40a914..cd1d3e1f49 100644 --- a/wp-content/themes/twentythirteen/functions.php +++ b/wp-content/themes/twentythirteen/functions.php @@ -488,9 +488,9 @@ if ( ! function_exists( 'twentythirteen_post_nav' ) ) : /** * Display navigation to next/previous post when applicable. * - * @global WP_Post $post Global post object. - * * @since Twenty Thirteen 1.0 + * + * @global WP_Post $post Global post object. */ function twentythirteen_post_nav() { global $post; diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php index 879b63f95c..d0e9280bce 100644 --- a/wp-content/themes/twentytwelve/functions.php +++ b/wp-content/themes/twentytwelve/functions.php @@ -427,9 +427,9 @@ if ( ! function_exists( 'twentytwelve_comment' ) ) : * * Used as a callback by wp_list_comments() for displaying the comments. * - * @global WP_Post $post Global post object. - * * @since Twenty Twelve 1.0 + * + * @global WP_Post $post Global post object. */ function twentytwelve_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; diff --git a/wp-includes/version.php b/wp-includes/version.php index d86c4ce535..52e314b188 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55003'; +$wp_version = '6.2-alpha-55004'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.