wcflespakket_before_label_print
The WooCommerce Flespakket wcflespakket before label print hook.
Description
Parameters (1)
- 0. $consignment_list (unknown)
- The consignment list.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wcflespakket_before_label_print', $consignment_list );
- The following example is for adding a hook callback.
- // define the wcflespakket_before_label_print callback
- function action_wcflespakket_before_label_print( $consignment_list ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wcflespakket_before_label_print', 'action_wcflespakket_before_label_print', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wcflespakket_before_label_print', 'action_wcflespakket_before_label_print', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/wcflespakket-export.php
- do_action( 'wcflespakket_before_label_print', $consignment_list );