Portfolio Snapshots

UPS Business Solutions

Hits From The Blog

Splat Video Reference

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.

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()) : [...]