GC_Admin_Bar::__get()

最后更新于:2021-11-26 09:12:01

GC_Admin_Bar::__get( string$name)

参数

$name

(string) (Required)

响应

(string|array|void)

源文件

文件: gc-includes/class-gc-admin-bar.php

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

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