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

Posted on

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

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