WP_Admin_Bar::render() WordPress Method

The WP_Admin_Bar::render() method is used to display the WordPress admin bar. The admin bar is a horizontal bar that is displayed at the top of the screen when a user is logged in to WordPress. It includes links to the WordPress dashboard, the user's profile, and other useful links.

WP_Admin_Bar::render() #


Source

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

	public function render() {
		$root = $this->_bind();
		if ( $root ) {
			$this->_render( $root );
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
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.