views:

92

answers:

2

Hi all,

I just came a cross matt's post on the new Harvard Gazette wordpress based magazine.

This theme is doing some very cool things I would like to know how to do too. So if any one knows of tutorials/plugins on how to do them, please share.

Here are some of the things:

1) Amazing calendar.

2) A very strong multimedia section.

3) A revolving "top news" (which I believe I have seen a plugin that does that)

4) posts from a specific category (I am guessing this is done through games in the loop + good CSS)

Any comment (especially for the first two points), will be greatly welcomed.

Best, Tal

+1  A: 

The calendar uses a javascript driven widget - you can get plenty of them if you search for jquery datepicker and it also has some preloaders setup as you can see those spining circles when page loads. The multimedia uses embeded flash video player which is pretty much the standard these days.

I don't understand really what you mean by revolving news so can't help you there, but most of the things that make something move on the page are done with javascript. Posts from specific category? Don't see what so special about that - it's just an sql statement that selects needed posts out of the database.

easwee
Hi easwee, thanks for commenting.Regarding the calendar, I am not sure I understand what you offer to search and how to implement what I find.Regarding the video player - the interesting thing is not the player itself, but the navigation bar on the right.Regarding the revolving news - stay on the homepage for 15 sec and you'll see...
Tal Galili
http://docs.jquery.com/UI/Datepicker for calendar. The menu is just a styled list with a div under it to contain the form fields. I suggest you to open up your firefox install the firbug and check out all the elements on page.
easwee
+2  A: 

1) It says at the bottom of the calendar "events calendar powered by Trumba"

2) Just a Flash video player and a post list. You can put all the video posts in their own category and exclude that category from your main post list (see #4).

3) Look up "jQuery carousel". There are a number of versions available that you can easily plug in to WP.

4) Use query posts to alter what posts appear in the main loop, and get posts to create multiple loops in one theme file.

Dan Grossman
Thanks Dan for the reply.Do you know of any way to do something as powerful as this Trumba calendar ?
Tal Galili