Action in brand_info shortcode before HTML.
Parameters
- term – brand term taxonomy
- atts – shortcode attributes
Usage
<?php
function change_brands_info_before ( $term, $atts ) {
//your code here
}
add_action( 'brands_info_before', 'change_brands_info_before', 10, 2 );
?>