Skip to content

Instantly share code, notes, and snippets.

@miminari
Last active March 16, 2020 12:22
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 miminari/de7520d853a9cf0e5e5863cbced45c43 to your computer and use it in GitHub Desktop.
Save miminari/de7520d853a9cf0e5e5863cbced45c43 to your computer and use it in GitHub Desktop.
<?php
//前略
/**
* Resistor menu.
*/
add_action(
'init',
function() {
register_nav_menus(
array(
'footer-global-menu' => 'フッターグローバルメニュー(モバイル用)',
)
);
}
);
// Footerにフッター用のグローバルメニューを追加.
add_action(
'snow_monkey_prepend_footer',
function() {
if ( has_nav_menu( 'footer-global-menu' ) ) {
?>
<nav class="l-footer__menu">
<?php
wp_nav_menu(
array(
'theme_location' => 'footer-global-menu',
'container' => false,
'menu_class' => 'c-nav--global-footer',
)
);
?>
</nav>
<?php
}
}
);
//後略
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment