2020/02/19 15:05 編集
a
投稿2020/02/19 08:42
Wordpressで自作テーマを作ろうとしているのですが、CSSが読み込まれません。
<?php wp_head(); ?>を挿入するとwp-includeのcssが読み込まれるのでindexページからテンプレートとしてheaderを読み込むこととwordpressの共通CSSを読み込むことができてはいるのですが、function.php内の記述が読み込まれません。回答よろしくおねがいします
header.php(一部抜粋)
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="format-detection" content="telephone=no"> <title>TF-30</title> <meta name="description" content=""> <meta property="og:title" content="TF-30"> <meta property="og:type" content="website"> <meta property="og:url" content="https://example.com/"> <meta property="og:image" content="https://example.com/img/ogp.png"> <meta property="og:site_name" content="TF-30"> <meta property="og:description" content=""> <meta name="twitter:card" content="summary_large_image"> <?php wp_head(); ?> <link rel="icon" href="./img/icon-home.png"> </head>
function.php
<?php /** * テーマのセットアップ * 参考:https://wpdocs.osdn.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/add_theme_support#HTML5 **/ function my_setup() { add_theme_support('post-thumbnails'); // アイキャッチ画像を有効化 add_theme_support('automatic-feed-links'); // 投稿とコメントのRSSフィードのリンクを有効化 add_theme_support('title-tag'); // タイトルタグ自動生成 add_theme_support( 'html5', array( //HTML5でマークアップ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); } add_action('after_setup_theme', 'my_setup'); // セットアップの書き方の型 // function custom_theme_setup() { // add_theme_support( $feature, $arguments ); // } // add_action( 'after_setup_theme', 'custom_theme_setup' ); /** * CSSとJavaScriptの読み込み * * @codex https://wpdocs.osdn.jp/%E3%83%8A%E3%83%93%E3%82%B2%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%A1%E3%83%8B%E3%83%A5%E3%83%BC */ function my_script_init() { wp_enqueue_style('fontawesome', 'https://use.fontawesome.com/releases/v5.8.2/css/all.css', array(), '5.8.2', 'all'); wp_enqueue_style('my', get_template_directory_uri() . '/css/style.css', array(), '1.0.0', 'all'); wp_enqueue_script('my', get_template_directory_uri() . '/js/script.js', array( 'jquery' ), '1.0.0', true); } add_action('wp_enqueue_scripts', 'my_script_init');
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/20 03:24