• Resolved valentinarie

    (@valentinarie)


    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter valentinarie

    (@valentinarie)

    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.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to only display current month entries’ is closed to new replies.