Feature Box with single post from designated category

Sometimes you need to throw something up front and center for all the world to see. Leave your pants on, Mazz, I’m talking about blog posts. /* populates feature box with latest post excerpt :: change category name to taste*/ function featurecontent() { ?> <div id=”my-feature-box”> // start loop with query for specific category of [...]

Footer mania continues

Maybe I mentioned this elsewhere, but what the hell, here is is again. To add a clone of the top nav, just do this: /* Remove Thesis attribution, add footer nav */ remove_action(‘thesis_hook_footer’, ‘thesis_attribution’); add_action(‘thesis_hook_footer’, ‘thesis_nav_menu’);

Look! Another Footer!

Hot on the heels (heels! footer! haha!) of yesterday’s footer post, here’s a better way to code it, using an unordered list so it’s semantically correct: // Custom footer add_action(‘thesis_hook_footer’, ‘custom_footer’); function custom_footer() { ?> <div id=”footer_right”>&copy; < ?= date( ‘Y’ ) ?>, Company name &bull; site by HDG, inc.</div> <div id=”footer_left”> <ul class=”menu”> <li>HOME</li> [...]

A quick one

Caps-lock Warnings on password fields.

A different use for this blog

Sure, once in awhile one of us will find time to post our usual silliness. I’m also going to start using this as a place to store code snippets I don’t want to lose. I’m sure you’ll all be very excited to read them. Switch Nav position in Thesis /* Switch Nav Position PHP */ [...]