Select Page

The HTML code that is returned by the brands_info shortcode.

Parameters

  1. return – HTML code, that is returned.
  2. term – brand term taxonomy.
  3. atts – shortcode attributes.

Usage

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

add_filter( 'shortcode_brands_info_return', 'change_shortcode_brands_info_return', 10, 3 );
?>