How to add Primary and Secondary Navigation Widgets to Genesis Navigation Bars. Add the following code to your WordPress theme's function.php file, or a functionality plugin to add Primary and Secondary Navigation Widgets to Genesis. … [Read more...] about Add Navigation Bar Widgets to Genesis Child Themes
Genesis Child Theme
Genesis – display featured image before single post title
Add the following code to your WordPress theme's function.php file, or a functionality plugin to display a featured image before the title on a single post. … [Read more...] about Genesis – display featured image before single post title
Move Genesis Title Below Featured Image
Add the following code to your WordPress theme's function.php file, or a functionality plugin to move Genesis Title Below Featured Image. Modify if( is_category( array(1,2))) with the IDs of the Categories you want to target. … [Read more...] about Move Genesis Title Below Featured Image
Genesis Sidebar-Content-Sidebar Layout Reversal
Genesis Sidebar-Content-Sidebar Layout Reversal Part 1 // Change sidebar order on Sidebar-Content-Sidebar add_action('genesis_after_header','change_sidebar_order'); function change_sidebar_order() { $site_layout = genesis_site_layout(); if ( 'sidebar-content-sidebar' == $site_layout ) { remove_action( 'genesis_sidebar', 'genesis_do_sidebar' ); … [Read more...] about Genesis Sidebar-Content-Sidebar Layout Reversal
Reposition JetPack Social Sharing Buttons in Genesis
Add the following code to your WordPress theme's function.php file, or a functionality plugin to reposition JetPack Social Sharing Buttons in Genesis. … [Read more...] about Reposition JetPack Social Sharing Buttons in Genesis
Insert content in Genesis blog page
Add the following code to a Genesis Child Theme Blog Template File to Insert content in Genesis blog page. Or create a new Blog template file with the following code. … [Read more...] about Insert content in Genesis blog page
Path To Genesis Child Theme
How to call the path to a Genesis Child Theme when you need to link directly to child theme files. … [Read more...] about Path To Genesis Child Theme