• Hello
    I have made all the styling through custom loops and theme files i want to make it so the widget calendar when you click the link will show just the events on that date. I already have it going to archive-event.php but what do i need in the loop to retrieve just the results for that particular day ?

Viewing 1 replies (of 1 total)
  • Thread Starter mrtom1981

    (@mrtom1981)

    I have added this to the archive to try narrow the scope

    <?php 
    
    query_posts( array(
    'post_type' => event,
    'scope' => 2012-09-06,
    'posts_per_page' => 25
    ) );
     ?>

    and it doesn’t work yet all the other defined scopes do like month or next-month help what am i doing wrong ?

    I want to use the above code and make it a little more dynamic by using the url and then changing the scope value but it doesn’t seem to work with normal input..

Viewing 1 replies (of 1 total)
  • The topic ‘Calendar Events showing on Archives’ is closed to new replies.