yit_panel_wc_after_update
The YITH WooCommerce Wishlist yit panel wc after update hook.
Description
do_action( 'yit_panel_wc_after_update' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'yit_panel_wc_after_update' );
- The following example is for adding a hook callback.
- // define the yit_panel_wc_after_update callback
- function action_yit_panel_wc_after_update( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'yit_panel_wc_after_update', 'action_yit_panel_wc_after_update', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'yit_panel_wc_after_update', 'action_yit_panel_wc_after_update', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /plugin-fw/lib/yit-plugin-panel-wc.php
- do_action( 'yit_panel_wc_after_update' );