Description
apply_filters('wcvendors_vendor_registration_checkbox', __( 'Apply to become a vendor? ', 'wcvendors' ) )
Parameters ( 1 ) ( string )
Usage Examples
To run the filter, copy this sample
$str = apply_filters('wcvendors_vendor_registration_checkbox', __( 'Apply to become a vendor? ', 'wcvendors' )); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the filter wcvendors_vendor_registration_checkbox callback function my_filter_function( $param ) { // do your thing here :-) ... return $str; } add_filter( 'wcvendors_vendor_registration_checkbox' , 'my_filter_function', 10, 1 );
To remove the filter, copy this sample
//remove the filter remove_filter( 'wcvendors_vendor_registration_checkbox', 'my_filter_function', 10, 1 );
Defined
This filter is defined in the following source file(s)
- wc-vendors/templates/dashboard/denied.php line 22
<label for="apply_for_vendor" class="checkbox"><?php echo apply_filters('wcvendors_vendor_registration_checkbox', __( 'Apply to become a vendor? ', 'wcvendors' )); ?></label>