How to Remove Comma (,) Between Categories and Tags In Genesis WordPress?

Posted on Leave a comment

Genesis is my favorite WordPress Theme Framework. On Crunchify, we have published more than 100 tricks and tips on customizing Genesis Child theme. In this tutorial we will go over how to customize and remove Comma between Categories and Tags for your Genesis WordPress theme. Take a look at below Categories and Tags on Crunchify site. First thing first. Here is […]

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

Posted on Leave a comment

//* 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 Leave a comment

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, […]