Forums

[resolved] How to only display current month entries (4 posts)

  1. Valentinarie
    Member
    Posted 2 years ago #

    Hello everyone! :o)

    I'm creating my own theme and it will be magazine style. So, I'm trying to figure out how to display only the posts made from the current month on the homepage. I'd also like to know how to create a {previous/next month} link so that the visitor can just keep flipping through monthly articles per page. Is that even possible? Thanks.

  2. nsathees
    Member
    Posted 2 years ago #

    What is not possible with wordpress?

    How good are you with HTML, CSS + PHP?

    to archive this you got to do a custom query like this . . .

    <?php
    $current_month = date('m');
    $current_year = date('Y');

    query_posts("cat=22&year=$current_year&monthnum=$current_month&order=ASC");
    ?>
    <!-- put your loop here -->

    Hope this will help you.

  3. Valentinarie
    Member
    Posted 2 years ago #

    Very good at html/css and basic with php. I took out the cat=22& part and it works perfectly! Thanks!

    The previous/next month link is still what I have to work on now. It doesn't show up.

  4. syed544
    Member
    Posted 1 year ago #

    Valentinarie,
    did u get the code for displaying "previous/next month links"?
    kindly show me how to do it?

Topic Closed

This topic has been closed to new replies.

About this Topic