-
-
Save chadmohr/1845817 to your computer and use it in GitHub Desktop.
Genesis widget area next to nav
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add_filter( 'genesis_nav_items', 'sws_social_icons', 10, 2 );
add_filter( 'wp_nav_menu_items', 'sws_social_icons', 10, 2 );
function sws_social_icons($menu, $args) {
$args = (array)$args;
if ( 'primary' !== $args['theme_location'] )
return $menu;
$social = dynamic_sidebar('Social Menu');
return $menu;
}