Lego2012
12/13/2016 - 5:01 PM

Adding Simple Social Icons to Navigation bar

Adding Simple Social Icons to Navigation bar

.genesis-nav-menu .widget-area {
    float: right;
    padding-top: 2.2rem;
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

genesis_register_sidebar( array(
    'id'          => 'nav-social-menu',
    'name'        => __( 'Nav Social Menu', 'your-theme-slug' ),
    'description' => __( 'This is the nav social menu section.', 'your-theme-slug' ),
) );

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;
    ob_start();
    genesis_widget_area('nav-social-menu');
    $social = ob_get_clean();
    return $menu . $social;
}