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 );
		}
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 3.1.0 | Introduced. |