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