Hi,
Hi,
I'm trying to get posts from the category 'news' posted during the current month.
Does someone have done this before?
(news contains sub categories)
I'm trying to get something like this:
sub1
sub2
Hi,
Hi,
I'm trying to get posts from the category 'news' posted during the current month.
Does someone have done this before?
(news contains sub categories)
I'm trying to get something like this:
sub1
sub2
I have tried this but it still doesnt work:
<? query_posts('cat=3&monthnum='echo date("n");'&year='echo date("Y");''); ?>
<?php if (have_posts()) : ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><font style="font-size:10px;font-style: italic;padding-left:5px;">(<?php the_time('d/m/Y') ?>)</font></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
it displays pages...
This topic has been closed to new replies.