vote up 1 vote down star
1

Hi,

I'm setting up a Wordress installation where I want some of the articles to show the date they were posted, and other articles to leave the date out. I'd like these articles to be completely dateless, if possible, so they only show in category archives and not in date archives.

I'm guessing I can tweak the templates to show the date or not based on the article's category, I was wondering if there was an easier solution to this?

Or should I start writing my own plugin to do this?

I've not got anything online at the moment, this is just an idea I'm churning over in my head for now.

Cheers,

Dan

flag

3 Answers

vote up 1 vote down

Your theory of how to do it (have the theme files make a check for the category, then either display the date or not) is correct.

I think this code should do it:

<?php
if (is_category('CategoryThatDisplaysDates')) {
echo '<p>Date posted: '; the_date(); echo '</p>';
};
?>
link|flag
Thanks, thought that would be the best way to do it. Means checking all the archive templates as well to only show the dated articles in the date archive... still, no-one ever said site design would be easy! – Dan Aug 21 at 11:47
vote up 1 vote down

If you don't want to mess up your categories (having “CategoryThatDisplaysDates” in a category listing looks a bit weird), you could try custom fields (meta-data). You add a custom field, e.g. display-date, in the write post panel and set its content to true.

Then, use ahockley's code, just change if(is_category(...)) to

if(get_post_meta($post->ID, 'display-date', true) == 'true')
link|flag
vote up 0 vote down

i'd go with a custom field. you can read about using custom fields here: http://codex.wordpress.org/Using%5FCustom%5FFields

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.