Skip to content

Instantly share code, notes, and snippets.

@vajrasar
Created October 15, 2013 13:26
Show Gist options
  • Save vajrasar/6991538 to your computer and use it in GitHub Desktop.
Save vajrasar/6991538 to your computer and use it in GitHub Desktop.
<?php //do not include this php tag
add_filter( 'genesis_post_title_output', 'modified_classi_p_title');
function modified_classi_p_title($title) {
global $post;
$customcat = '<span id="cat_classi">' . get_the_term_list($post->ID, 'classi_cat') . '</span>';
$title = $customcat . $title;
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment