Select Page

The HTML code that is returnd by the brands_product_thumbnail shortcode.

Parameters

  1. return – HTML code, that is returned.
  2. 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 );
?>