[EventCalendar] Page with listings

4ltkfi702 at sneakemail.com 4ltkfi702 at sneakemail.com
Thu Sep 6 23:12:18 UTC 2007


I can pull a page up that's close to what I expect with something like so:


<?php
query_posts('cat=5');
while (have_posts()) : the_post();
$title = the_title(false,false,false);
$date = get_the_date();
$txt = get_the_content();

print <<<END
<h3>$title</h3>
$txt
<hr />
END;

endwhile;
?>


but since I need the event calendar date and not the post date, how do I 
pull the date out of ec3_schedule table?





Bertrand 4ltkfi702-at-sneakemail.com |bugmenot| wrote:
> I'd like my listing page to include the blog text instead of just the 
> event title:
> 
> September 2007:
> 
> This is an event
> 
> This is the event text
> This is the event text
> This is the event text
> 
> This is another event
> 
> This is the event text
> This is the event text
> This is the event text
> 
> 
> Is there an easy way to do this?
> 
> 
> _______________________________________________
> Blog: http://wpcal.firetree.net/
> EventCalendar at firetree.net mailing list
> Unsubscribe: http://penguin.firetree.net/eventcalendar
> 




More information about the EventCalendar mailing list