Timeline

I'm trying to use the Timeline plugin and having some trouble. I'm hoping that someone can help.

What I would like to do is take all items of the type "Event" and display them using the timeline. But what do I need to insert for $items to make that happen?

replace $items in the create timeline helper with the item parameters you wish to set for the timeline, for example use the get items helper function to limit the items by item type

<?php createTimeline('timeline', get_items(array('type' => 'Event'))); ?>

Andrea

Can tags be used as parameters?

Thank you.

If you look at the documentation for get_items(), you'll see that 'tags' is indeed one of the parameters you can use.