Select Page

The HTML code that is returned by the brands_list shortcode.

Parameters

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