Skip to content

Instantly share code, notes, and snippets.

@claudioweb
Created July 28, 2015 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claudioweb/383ed3f5717ea6d7cb3e to your computer and use it in GitHub Desktop.
Save claudioweb/383ed3f5717ea6d7cb3e to your computer and use it in GitHub Desktop.
Registrando Menus no wordpress
/*=========================================
= Cadastro de menus =
=========================================*/
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu() {
register_nav_menu( 'primary_navigation_sistema', __( 'Navegação Sistema', 'theme-slug' ) );
register_nav_menu( 'rodape_1', __( 'Rodapé (Coluna 1)', 'theme-slug' ) );
register_nav_menu( 'rodape_2', __( 'Rodapé (Coluna 2)', 'theme-slug' ) );
register_nav_menu( 'rodape_3', __( 'Rodapé (Coluna 3)', 'theme-slug' ) );
}
/*----- End of Cadastro de menus ------*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment