Monthly Archives: June 2010

Tim Thumb Image Resizing

A handy little tool for resizing images automatically. Caches images to limit processor speed. Very nice for when your users might be uploading their own images. Requires the gdLibrary be installed on your server. Here’s a handy script to check if it is. Basic implementation looks like this: <img src=”/scripts/timthumb.php?src=/images/whatever.jpg&h=150&w=150&zc=1″ alt=”"> Here’s a nice article on implementing [...]

WordPress as a CMS

Making your own theme Easy breezy. The minimum you need are index.php and style.css files. As long as you have the right code in your stylesheet, your theme should show up in the picker in the admin area. This doc has all the basics: http://codex.wordpress.org/Theme_Development. Don’t forget to add <?php wp_head(); ?> right before the </head> [...]