The HTML code that is returned by the brands_info shortcode.
Parameters
- return – HTML code, that is returned.
- term – brand term taxonomy.
- atts – shortcode attributes.
Usage
<?php
function change_shortcode_brands_info_return ( $return, $term, $atts ) {
//your code here
return $return;
}
add_filter( 'shortcode_brands_info_return', 'change_shortcode_brands_info_return', 10, 3 );
?>