cliffordp
3/24/2015 - 4:36 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 = '* ';
	
	if(is_tax('jetpack-portfolio-type')) {
		$type = $prepend . get_query_var( 'taxonomy');
	}
	return $type;
}