Skip to content

Instantly share code, notes, and snippets.

@claudioweb
Last active July 6, 2017 22:40
Show Gist options
  • Save claudioweb/72207c2192a0e6658280fb76e6cc2b63 to your computer and use it in GitHub Desktop.
Save claudioweb/72207c2192a0e6658280fb76e6cc2b63 to your computer and use it in GitHub Desktop.
Aplicar um menu ao local definido pelo tema
<?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