WC_Admin_Pointers::setup_pointers_for_screen()

Setup pointers for screen.


Description Description


Source Source

File: includes/admin/class-wc-admin-pointers.php

	public function setup_pointers_for_screen() {
		if ( ! $screen = get_current_screen() ) {
			return;
		}

		switch ( $screen->id ) {
			case 'product':
				$this->create_product_tutorial();
				break;
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.