From 97ef1ca74b47e162e3946cd35dec1b9ece9df8b7 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 25 Jun 2017 21:58:41 +0000 Subject: [PATCH] Docs: Add missing deprecation, introduction, and summary information to the DocBlock for `WP_Admin_Bar::recursive_render()`. Props coffee2code. Fixes #40840. Built from https://develop.svn.wordpress.org/trunk@40947 git-svn-id: http://core.svn.wordpress.org/trunk@40797 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-admin-bar.php | 7 +++++++ wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-admin-bar.php b/wp-includes/class-wp-admin-bar.php index 49986ac225..7bb4881ece 100644 --- a/wp-includes/class-wp-admin-bar.php +++ b/wp-includes/class-wp-admin-bar.php @@ -556,6 +556,13 @@ class WP_Admin_Bar { } /** + * Renders toolbar items recursively. + * + * @since 3.1.0 + * @deprecated 3.3.0 Use WP_Admin_Bar::_render_item() or WP_Admin_bar::render() instead. + * @see WP_Admin_Bar::_render_item() + * @see WP_Admin_Bar::render() + * * @param string $id Unused. * @param object $node */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 1be0999083..3b2bf15770 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40946'; +$wp_version = '4.9-alpha-40947'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.