cliffordp
3/24/2015 - 4:47 PM

http://www.pagelinestheme.com/all-the-dynamic-dms-page-handling-you-want/

<?php
//from http://www.pagelinestheme.com/all-the-dynamic-dms-page-handling-you-want/
add_filter( 'pl_breaker_type', 'custom_breakers');
function custom_breakers( $type ) {
	$prepend = '* ';
	
	//each custom taxonomy is its own type
	if(is_tax()) {
		$type = $prepend . get_query_var( 'taxonomy');
	}
	return $type;
}