Description
apply_filters('wcv_before_seller_info_tab', '')
Parameters ( 1 ) ( string )
Usage Examples
To run the filter, copy this sample
$str = apply_filters('wcv_before_seller_info_tab', ''); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the filter wcv_before_seller_info_tab callback function my_filter_function( $param ) { // do your thing here :-) ... return $str; } add_filter( 'wcv_before_seller_info_tab' , 'my_filter_function', 10, 1 );
To remove the filter, copy this sample
//remove the filter remove_filter( 'wcv_before_seller_info_tab', 'my_filter_function', 10, 1 );
Defined
This filter is defined in the following source file(s)
- wc-vendors/classes/front/class-vendor-shop.php line 103
self::$seller_info .= apply_filters('wcv_before_seller_info_tab', '');