Inventory_Presser_Allow_Inventory_As_Home_Page::add_hooks()

Adds hooks

On This Page


Return Return

(void)


Top ↑

Source Source

File: includes/class-allow-inventory-as-home-page.php

	public function add_hooks() {
		register_activation_hook( INVP_PLUGIN_FILE_PATH, array( 'Inventory_Presser_Allow_Inventory_As_Home_Page', 'create_pages' ) );

		// Disabled this feature because it breaks dashboard pages in 6.3.
		// add_action( 'parse_query', array( $this, 'hide_page_from_edit_list' ) );
		add_action( 'pre_get_posts', array( $this, 'redirect_the_page' ) );
	}