こんにちは。
今、練習をかねてローカル環境でwpの子ページからカスタマイズしています。
その中でカスタムテンプレートを作り、そのカスタムテンプレート内で、
そのテンプレート対応のCSSファイルを読み込みしたいのですが、
なかなかうまくいきませんので、アドバイスいただけると嬉しいです。
現状は、functions.phpで分岐を作ってはみたものの反応なし状態です。
php
1//functions.php 2<?php 3add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); 4 5function theme_enqueue_styles() { 6 wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); 7 wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') 8); 9 10if (is_page_template("custom_home.php")) { 11 wp_enqueue_style( 'home-style', get_template_directory_uri() . '/home_style.css', array()); 12 } 13} 14 15 16コード
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/05 09:37