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