LoginSignup
0
0

More than 3 years have passed since last update.

WordPress自作テーマでナビを表示させる

Last updated at Posted at 2019-12-03

◆メニューを表示させる(header.phpへ記述)
<?php
$args = array(
'menu_class' => 'nav navbar-nav',
'container' => false,
);
wp_nav_menu($args);
?>

◆管理画面の外観のサブメニューに”メニュー”を表示させる(functions.phpへ記述)
<?php
function menu_setup() {

register_nav_menus( array(
'global' => 'グローバルメニュー',
'side' => 'サイドメニュー',
'footer' => 'フッターメニュー',
) );
}
add_action( 'after_setup_theme', 'menu_setup' );
?>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0