Genesis Framework Snippets

This will become my personal snippet library for the Genesis Framework. Since it is a work in progress, here are some other resources for Genesis code snippets: http://dev.studiopress.com/sitemap http://www.billerickson.net/genesis-quick-tips/ http://gregrickaby.com/2011/02/add-remove-genesis-elements.html http://genesistutorials.com/snippets http://shaynesanderson.com/blog/2011/05/24/handy-genesis-functions/ http://wpsmith.net/category/tutorials/ http://www.briangardner.com/code/

WordPress: Get Tags for a Specific Category

WordPress is such a powerful tool out of the box that it is surprising to find something that it doesn’t have a function for. Here is a code snippet that will allow you to show tags that are related to a specific category. The nice thing about this snippet is that it does not require [...]

JavaScript: 3 Ways to Use document.write

The document.write command is a standard, yet powerful, JavaScript command for writing output to a page. In this article I’ve outline 3 ways to use document.write statements.