<plugin_name>-<current_page>_tab_end
The WooCommerce Compare Products LITE plugin name current page tab end hook.
Description
do_action( '<plugin_name>-<current_page>_tab_end' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( '{$plugin_name}-{$current_page}_tab_end' );
- The following example is for adding a hook callback.
- // define the <plugin_name>-<current_page>_tab_end callback
- function action_plugin_name_current_page_tab_end( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$plugin_name}-{$current_page}_tab_end", 'action_plugin_name_current_page_tab_end', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$plugin_name}-{$current_page}_tab_end", 'action_plugin_name_current_page_tab_end', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /admin/admin-init.php
- do_action( $this->plugin_name . '-' . $current_page . '_tab_end' );