iamnotagoodartist

Studio8.net

Studio8.net

After a couple months of work and a last minute (but much needed) hosting switch, my latest project has been unleashed upon the internet. Say hello to Studio8.net’s brand new, WordPress-powered site: http://www.studio8.net/

Read the rest of "Studio8.net"


Meowville

Meowville

A t-shirt design I made for my gf last night.

From this original, blurry pic of her cat, Remi:

Read the rest of "Meowville"


WordPress: Excluding Categories on Secondary Front Pages

WordPress: Excluding Categories on Secondary Front Pages

More precisely, this tutorial covers how to exclude categories on paged front pages, index.php, beyond the first default listing.
Excluding certain categories from the front page is a pretty easy task, just use the query_posts() function to remove those categories before going into the loop, like so:
<?php if ( is_home() ) {
query_posts("cat=-3");
}
while [...]

Read the rest of "WordPress: Excluding Categories on Secondary Front Pages"