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