Select Page

Action in brand_info shortcode after HTML.

Parameters

  1. term – brand term taxonomy
  2. 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 );
?>