yith_wcwl_updated
The YITH WooCommerce Wishlist yith wcwl updated hook.
Description
do_action( 'yith_wcwl_updated' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'yith_wcwl_updated' );
- The following example is for adding a hook callback.
- // define the yith_wcwl_updated callback
- function action_yith_wcwl_updated( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'yith_wcwl_updated', 'action_yith_wcwl_updated', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'yith_wcwl_updated', 'action_yith_wcwl_updated', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /includes/class.yith-wcwl-admin-init.php
- do_action( 'yith_wcwl_updated' );