← All posts

Tagged: genesis

Adding Bootstrap 3 navbar to Genesis and WordPress

I like bootstrap. I think a framework like Genesis with the bootstrap code would be awesome. I decided to put together a Genesis child template that would use the navbar of Bootstrap 3. Here's what what I did.

Remove Home page title in Genesis 2.0

//* Remove page title from the home page add_action('genesis_before_entry', 'ddd_remove_home_title'); function ddd_remove_home_title() { if (is_front_page()) {…

Genesis dynamic filters

I'm impressed with Genesis. It's amazing what can be done with filters and hooks. (Using Genesis 2.0-Beta2) Today, I'm working on my personal site to learn…