親テーマとしてHTML5 Blankを持つ子テーマを使用しています。私は問題なく前にこれを使用しましたが、何らかの理由で私は今、私のテーマのページに次のエラーを取得しています - 次のテーマがインストールされていますが不完全ですWordpress - 子テーマはインストールを完了しません
壊れたテーマ。 名前説明
HTML5空白の子テーマ親テーマがありません。 "html5blank"親テーマをインストールしてください。
これは私が私のフォルダ内に持っているものである - また、公式WordPressのガイドをコピーする - 私はこの上の多数の異なるバリエーションを試してみた
のstyle.css
/*
Theme Name: HTML5 Blank Child Theme
Description: A child theme of the HTML5 Blank WordPress theme
Author: Mike Whitehead
Template: html5blank
Version: 1.0.0
*/
。上記の文言は私の最後のプロジェクトで私のために働いたので、なぜ今はうまくいかないのか分かりません。
これは私の機能ファイルである -
のfunctions.php
<?php
function my_theme_enqueue_styles() {
$parent_style = 'html5blank-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
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),
wp_get_theme()->get('Version')
);
}
add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles');
?>
これが機能しない理由わかりません。いかなる援助も感謝します。
親と子のテーマディレクトリの名前は何ですか?命名規則に問題がある可能性があります。 – Dedering
あなたの親テーマはこのフォルダ名を持っていますか?html5blank –
@Dedering親のディレクトリ名はhtml5blank-stableです。 –