yith_wcwl_adding_to_wishlist
The YITH WooCommerce Wishlist yith wcwl adding to wishlist hook.
Description
do_action( 'yith_wcwl_adding_to_wishlist', (unknown) $prod_id, (unknown) $wishlist_id, (unknown) $user_id );
Parameters (3)
- 0. $prod_id (unknown)
- The prod id.
- 1. $wishlist_id (unknown)
- The wishlist id.
- 2. $user_id (unknown)
- The user id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'yith_wcwl_adding_to_wishlist', $prod_id, $wishlist_id, $user_id );
- The following example is for adding a hook callback.
- // define the yith_wcwl_adding_to_wishlist callback
- function action_yith_wcwl_adding_to_wishlist( $prod_id, $wishlist_id, $user_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'yith_wcwl_adding_to_wishlist', 'action_yith_wcwl_adding_to_wishlist', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'yith_wcwl_adding_to_wishlist', 'action_yith_wcwl_adding_to_wishlist', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /includes/class.yith-wcwl.php
- do_action( 'yith_wcwl_adding_to_wishlist', $prod_id, $wishlist_id, $user_id );