Warning: This method has been deprecated. Use WP_Admin_Bar::_render_item() instead.

WP_Admin_Bar::recursive_render() WordPress Method

The WP_Admin_Bar::recursive_render() function is used to recursively render a WordPress admin bar. This function is used internally by the WP_Admin_Bar::render() function, and should not be called directly.

WP_Admin_Bar::recursive_render( string $id, object $node ) #

Renders toolbar items recursively.


Description

Top ↑

See also


Top ↑

Parameters

$id

(string)(Required)Unused.

$node

(object)(Required)


Top ↑

Source

File: wp-includes/class-wp-admin-bar.php

	public function recursive_render( $id, $node ) {
		_deprecated_function( __METHOD__, '3.3.0', 'WP_Admin_bar::render(), WP_Admin_Bar::_render_item()' );
		$this->_render_item( $node );
	}


Top ↑

Changelog

Changelog
VersionDescription
3.3.0Use WP_Admin_Bar::_render_item() or WP_Admin_bar::render() instead.
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.