Hiya,
I want to use this code:
<?php twentyten_posted_on(); ?>
to display the date on any single post page, except when the category is id=3....
I tried using in_category but couldn't get it to work...
any ideas?
thanks!
Hiya,
I want to use this code:
<?php twentyten_posted_on(); ?>
to display the date on any single post page, except when the category is id=3....
I tried using in_category but couldn't get it to work...
any ideas?
thanks!
Hiya,
if <?php twentyten_posted_on(); ?> is inside the loop try:
<?php if ( !in_category('3') ): ?>
<?php twentyten_posted_on(); ?>
<?php endif; ?>
if outside the loop.
<?php
$post = $wp_query->post;
if ( !in_category('3') ) {
twentyten_posted_on();
}
?>
not sure 100% but never know:)
bye
great, thanks!
This topic has been closed to new replies.