HTML, который возвращается шорткодом brands_products
Параметры
- return – HTML код, который возвращается
- atts – атрибуты шорткода
Использование
<?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 );
?>