WP_Admin_Bar::__get() WordPress Method

The WP_Admin_Bar::__get() method is used to get an admin bar instance by its id.

WP_Admin_Bar::__get( string $name ) #


Parameters

$name

(string)(Required)


Top ↑

Return

(string|array|void)


Top ↑

Source

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

	public function __get( $name ) {
		switch ( $name ) {
			case 'proto':
				return is_ssl() ? 'https://' : 'http://';

			case 'menu':
				_deprecated_argument( 'WP_Admin_Bar', '3.3.0', 'Modify admin bar nodes with WP_Admin_Bar::get_node(), WP_Admin_Bar::add_node(), and WP_Admin_Bar::remove_node(), not the <code>menu</code> property.' );
				return array(); // Sorry, folks.
		}
	}


Top ↑

Changelog

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