Description
apply_filters( 'wcv_partial_path_pro_user_meta' , 'partials/vendor/wcvendors-pro-user-meta.php' )
Parameters (1) (string)
Usage Examples
To run the filter, copy this sample
$str = apply_filters( 'wcv_partial_path_pro_user_meta' , $param ) ); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the wcv_partial_path_pro_user_meta callback function filter_wcv_partial_path_pro_user_meta( $param ) { // do your thing here :-) ... return $str; } add_filter( 'wcv_partial_path_pro_user_meta', 'filter_wcv_partial_path_pro_user_meta', 10, 1 );
To remove the filter, copy this sample
//remove the filter remove_filter( 'wcv_partial_path_pro_user_meta', 'filter_wcv_partial_path_pro_user_meta', 10, 1 );
Defined
This filter is defined in the following source file(s)
- wcvendors-pro/admin/class-wcvendors-pro-shipping-controller.php line 385
include( apply_filters( 'wcv_partial_path_pro_user_meta' , 'partials/vendor/wcvendors-pro-user-meta.php' ) );