web-dev-qa-db-ja.com

エラーメッセージ:index.phpが見つからない - 子テーマ

他の開発者によって作成されたカスタムWPテーマに子テーマをロードしようとしています。

Codexの指示に基づいてスタイルシートを作成しましたが、何が問題になっているのかわかりません。

これが私のstyle.cssです:

/*!
Theme Name: Integrative Wisdom Child
Theme URI: http://underscores.me/
Author: Drew Lettner after Tony Klose
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: integrative-wisdom
*/

これが私のfunctions.phpです。

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'parent-style';

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style )
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
1
Drew Lettner

スタイルシートファイルの上部にあるコメント領域に必要な定型句の一部がありません。次のような行が必要です。

Template: [name of parent theme folder]

たとえば、親テーマの/ wp-content/themesフォルダー内のフォルダーが統合的な知恵である場合は、次のようになります。

/*!
Theme Name: Integrative Wisdom Child
Theme URI: http://underscores.me/
Author: Drew Lettner after Tony Klose
Author URI: http://underscores.me/
Template: integrative-wisdom
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: integrative-wisdom
*/
3
Fencer04