Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Created May 7, 2015 15:57
Show Gist options
  • Select an option

  • Save eri-trabiccolo/319e383a3899488c5f59 to your computer and use it in GitHub Desktop.

Select an option

Save eri-trabiccolo/319e383a3899488c5f59 to your computer and use it in GitHub Desktop.
Show publication date in just one category
add_filter('tc_opt_tc_show_post_metas_publication_date', 'show_pub_date_in_category');
function show_pub_date_in_category( $bool ){
//replace 1 with the category ID
return is_archive() ? is_category(1) : $bool;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment