The HTML code that is returnd by the brands_product_thumbnail shortcode.
Parameters
- return – HTML code, that is returned.
- atts – shortcode attributes.
Usage
<?php
function change_shortcode_brands_product_thumbnail_return ( $return, $atts ) {
//your code here
return $return;
}
add_filter( 'shortcode_brands_product_thumbnail_return', 'change_shortcode_brands_product_thumbnail_return', 10, 2 );
?>