Select Page

The HTML code that is returned by the brands_products shortcode.

Parameters

  1. return – HTML code, that is returned.
  2. atts – shortcode attributes.

Usage

<?php
function change_brands_products_shortcode_return ( $return, $atts ) {
//your code here
    return $return;
}

add_filter( 'brands_products_shortcode_return', 'change_brands_products_shortcode_return', 10, 2 );
?>