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