Last active
July 6, 2017 22:40
-
-
Save claudioweb/72207c2192a0e6658280fb76e6cc2b63 to your computer and use it in GitHub Desktop.
Aplicar um menu ao local definido pelo tema
This file contains 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
<?php | |
// Trazendo todas os locais criado | |
$locations = get_theme_mod( 'nav_menu_locations' ); | |
// Trazendo todos os grupos de menu criados | |
$menus = wp_get_nav_menus(); | |
foreach($menus as $menu) { | |
if( $menu->name == 'Redes sociais') { | |
$locations['footer_column_4'] = $menu->term_id; | |
} | |
} | |
set_theme_mod('nav_menu_locations', $locations); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment