Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- wp_enqueue_script('abcbiz-add-to-cart', AbcBizElementor_Assets . "/js/add-to-cart.js", array('jquery'), false, true);
- // Generate the nonce
- $abcbiz_add_to_cart_nonce = wp_create_nonce('abcbiz_add_to_cart_nonce');
- wp_localize_script('abcbiz-add-to-cart', 'acbbiz_add_to_cart', array(
- 'ajax_url' => admin_url('admin-ajax.php'),
- 'abcbiz_add_to_cart_nonce' => $abcbiz_add_to_cart_nonce // Add the nonce here
- // You can add more data here as needed
- ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement