Skip to content

Instantly share code, notes, and snippets.

@kdice-k
Last active March 15, 2022 10:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdice-k/cf122e2367b5f2d7b7aa0fd4bfd5b68c to your computer and use it in GitHub Desktop.
Save kdice-k/cf122e2367b5f2d7b7aa0fd4bfd5b68c to your computer and use it in GitHub Desktop.
WordPress テーマ自作 メニュー機能を有効にする
<?php
function custom_theme_setup() {
add_theme_support( 'menus' );
}
add_action( 'after_setup_theme', 'custom_theme_setup' );
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<?php wp_head(); ?>
</head>
<body>
<h1>テーマ機能 追加のテスト</h1>
<?php wp_nav_menu(['menu' => 'main_nav']); ?>
<?php wp_footer(); ?>
</body>
</html>
@charset "utf-8";
/*
Theme Name: ざっくりテスト用
Theme URI: https://tmick.net
Description: シンプルテーマを作るテスト環境用
Version: 0.01
Author: D4isk
Author URI: https://tmick.net
*/
h1 {
font-size: 24px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment