Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created January 28, 2026 08:45
Show Gist options
  • Select an option

  • Save jmabbas/21b7949e9da6c32c2715626668587b31 to your computer and use it in GitHub Desktop.

Select an option

Save jmabbas/21b7949e9da6c32c2715626668587b31 to your computer and use it in GitHub Desktop.
Vodi - Footer social icon style fix
function vodi_footer_top_bar_social() {
if ( has_nav_menu( 'social-media' ) ) :
wp_nav_menu( array(
'theme_location' => 'social-media',
'container_class' => 'footer-social-icons 123 social-label',
'menu_class' => 'social-icons',
'anchor_class' => 'footer-social-icon',
'depth' => 1,
'fallback_cb' => false,
'walker' => new Vodi_Social_Media_Navwalker(),
) );
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment