WordPress テーマ自作 メニュー機能を有効にする
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function custom_theme_setup() { | |
add_theme_support( 'menus' ); | |
} | |
add_action( 'after_setup_theme', 'custom_theme_setup' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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