Genesis Attributes

Posted on

This is a collection of all Genesis Attributes present in Genesis Framework 3.0.0+ Genesis attributes are very useful to overwrote default functions, add classes and more. Example: Sometimes, We are required to add additional class into a specific element container to add some additional features and customizations. One can add multiple classes into different HTML […]

How to Add “Top” and “Footer” Menus to Genesis

Posted on

//* Do NOT include the opening php tag shown above. Copy the code shown below. // Register and Hook Top Navigation Menu add_action(‘genesis_before_header’, ‘sample_before_header_menu’, 10); function sample_before_header_menu() { register_nav_menu( ‘top’, ‘Top Navigation Menu’ ); genesis_nav_menu( array( ‘theme_location’ => ‘top’, ‘menu_class’ => ‘menu genesis-nav-menu menu-top’, ) ); } // Register and Hook Footer Navigation Menu add_action(‘genesis_before_footer’, […]

Adding dynamic wordpress / genesis menu within

Posted on

Firstly, let me explain what I’m trying to achieve here: While redesigning the WordPress Genesis-sample theme by StudioPress I decided to use only the responsive-menu (mobile menu, the one with hamburger icon) for all display resolutions. I have already attached the menu to the right hook in the and styled the section to my liking, […]