Created
January 28, 2026 08:45
-
-
Save jmabbas/21b7949e9da6c32c2715626668587b31 to your computer and use it in GitHub Desktop.
Vodi - Footer social icon style fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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