Select Page

Action in brand_info shortcode before HTML.

Parameters

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