Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save cliffordp/a84a70dcb204f3efccab to your computer and use it in GitHub Desktop.

Select an option

Save cliffordp/a84a70dcb204f3efccab to your computer and use it in GitHub Desktop.
<?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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment