Created
May 7, 2015 15:57
-
-
Save eri-trabiccolo/319e383a3899488c5f59 to your computer and use it in GitHub Desktop.
Show publication date in just one category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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