wordpress / latest / classes / wp_admin_bar / __get.html

WP_Admin_Bar::__get( string $name ): string|array|void

Parameters

$name string Required

Return

string|array|void

Source

File: wp-includes/class-wp-admin-bar.php. View all references

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.
	}
}

Uses

Uses Description

Changelog

Version Description
3.3.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_admin_bar/__get