Move the Genesis Framework Author Box
By default, the Genesis Author Box outputs directly after the post. To move it to an alternate location, you’ll first need to remove it from the original location using the following code in...
View ArticleGenesis Custom Widget Post Titles
First, let me say that the Genesis Featured Posts widget is a wonderfully easy way to easily add customized content to a widgeted area. And, Nick’s Genesis Featured Widget Amplified extends...
View ArticleAdd Content to the top of the Genesis Blog Page Template
By default, the Genesis Framework Blog Page Template does not allow you to display content added using the WordPress editor. In some cases you may want to add an image or additional information at the...
View ArticleAdd a Print Style Sheet to your Genesis Child Theme
The way a website prints is not necessarily how you want it to look. The good news is you can control it easily by adding a print stylesheet to your Theme. add_action( 'wp_enqueue_scripts',...
View ArticleChange the Genesis Author Box Title
To change the Genesis Framework author box title, you can use a filter: /** Modify the author box title */ add_filter('genesis_author_box_title', 'graceful_author_box_title'); function...
View ArticlePage Depth Body Class for WordPress
Assumes that your page depth is how the pages are organized in the page hierarchy, not custom menu hierarchy add_filter('body_class','depth_body_class'); /** * Add page depth body class. * * Adds...
View ArticleRemove Genesis Header Right Widget on Homepage
To remove the Header Right Widget area from the homepage, you can use this code: remove_action( 'genesis_header', 'genesis_do_header' ); add_action( 'genesis_header', 'genesis_do_new_header' ); /** *...
View ArticleGenesis Simple Sidebar Body Classes
Coming Soon! The post Genesis Simple Sidebar Body Classes appeared first on Dream Whisper Designs.
View ArticleAdd a Taxonomy to the Minimum Pro Theme Portfolio
The Minimum Pro Theme for the Genesis Theme Framework includes a custom post type to create a portfolio. If you would like to create categories for the StudioPress Minimum Pro Theme Portfolio, you can...
View ArticleRelocate the Genesis Footer Widgets
Since Genesis 1.6, you can add footer widgets to your child themes with one line of code. You can read more about adding the footer widgets at StudioPress. By default the footer widgets are output...
View Article