bellows_auto_term_title

Knowledgebase Docs » Bellows
USEFUL? 0

bellows_auto_term_title

This filter allows you to filter the the title of menu items that are displayed in Taxonomy Term Autopopulation menus

$item_title
The title of the menu item (the term’s name).
$term
The Term object
$args
wp_nav_menu arguments array

Example structure

function bam_auto_term_title( $item_title, $term, $args ){
	// Do magic
	return $item_title;
}
add_filter( 'bellows_auto_term_title' , 'bam_auto_term_title' , 10 , 2);