I just had to work on some “Splat” animation and this was great as reference. Too bad my animation had to be limited but good for future refence.
Portfolio Snapshots
Hits From The Blog
WordPress Custom Type loop
With the upcoming version of WordPress 3 (available in beta as of today) here is a tip of how to pull the custom types in the loop once you have created them. PHP: <h3>Recent News</h3> <ul> < ?php $recentPosts = new WP_Query(); $recentPosts->query($query_string . ‘&post_type=news’); ?> < ?php while ($recentPosts->have_posts()) : [...]
by Helmut Granda on April 8, 2010 in WordPress