確立の高そうな原因を羅列させていただきます。
★get_template_directory_uri()ではなく、get_stylesheet_directory_uri()を使ってみてください
★『wp-content/themes/親テーマ(ディレクトリ名)』 と 『wp-content/themes/子テーマ(ディレクトリ名)』をしっかり確認していただき、子テーマfunctions.phpのTemplate:first のfirstが 親テーマ(ディレクトリ名) と同じテキストの羅列になっているかどうか確認もしてみてください
★場合によって、以下の様に親テーマのcssを読み込んだ後、子テーマのcssを読み込むなど、調整してみてください
add_action('wp_enqueue_scripts','theme_enqueue_styles');
function theme_enqueue_styles() {
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'));
}
◆get_template_directory_uri() と get_stylesheet_directory_uri()の違いは?
◆wp_enqueue_scriptsの中でどのように優先順位が設定されるのか?
(必要であれば・・・・。コアのphpを読む必要も出てくるので、かなり時間がかかるかもしれません)