a sketch for a richyworks page


just an idea right now, but we’ve begun to produce comps for a new web based service gear’d towards the medical feild. This system would allow doctors to easily stay on top of of present and past patients, as well as allowing collectives to search the doctors database at anytime.

We have the pleasure of doing some web comps for Icentrics new support blogs for its mothership site DriverGuide.com and its new automatic update site myUpdates.com.



hey everybody,
I was working on building my wordpress theme,
and I wanted to be able to add post to more then just one page, ie, one section of my site.
here’s the code.
<!– start the if else to see what page were on, and then use the appropriate category. –>
<?php if (is_page(‘design-projects’)) {
query_posts(‘cat=8′); ?>
<?php } elseif (is_page(’street-projects’)) {
query_posts(‘cat=7′); ?>
<?php } elseif (is_page(‘process’)) {
query_posts(‘cat=10′); ?>
<?php } elseif (is_page(‘news’)) {
query_posts(‘cat=9′); ?>
<?php } ?>
====then you add the loop here,
I forgot wehre I found this, but props to them.
hope this helps someone/…