woo_save_<post_type>_to_economic
The WooCommerce e-conomic Integration woo save post type to economic hook.
Description
Parameters (2)
- 0. $post_id (unknown)
- The post id.
- 1. $post (unknown)
- The post.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woo_save_{$post_type}_to_economic', $post_id, $post );
- The following example is for adding a hook callback.
- // define the woo_save_<post_type>_to_economic callback
- function action_woo_save_post_type_to_economic( $post_id, $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "woo_save_{$post_type}_to_economic", 'action_woo_save_post_type_to_economic', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "woo_save_{$post_type}_to_economic", 'action_woo_save_post_type_to_economic', 10, 2 );
Defined (2)
The action is defined in the following location(s).
- /woocommerce-economic.php
- do_action('woo_save_'.$post->post_type.'_to_economic', $post_id, $post);
- do_action('woo_save_'.$post->post_type.'_to_economic', $post_id, $post);