GC_Admin_Bar::get_node()

最后更新于:2021-11-26 09:08:31

GC_Admin_Bar::get_node( string$id)

Gets a node.

参数

$id

(string) (Required)

响应

(object|void) Node.

源文件

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

	final public function get_node( $id ) {
		$node = $this->_get_node( $id );
		if ( $node ) {
			return clone $node;
		}
	}
/**
 * Removes the "Updates" link from the Toolbar.
 *
 * @param GC_Admin_Bar $gc_admin_bar Toolbar instance.
 */
function gcdocs_check_updates_node( $gc_admin_bar ) {

	$updates_node = $gc_admin_bar->get_node( 'updates' );

	// Check if the 'updates' node exists
	if( $updates_node ) {
		$gc_admin_bar->remove_node( 'updates' );
	}
}
add_action( 'admin_bar_menu', 'gcdocs_check_updates_node', 999 );