が、これは私のテストページのeコマースショップれるロードされていない https://colorlib.com/shapely子テーマは親テーマから全体のスタイルを
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),
wp_get_theme()->get('Version')
);
}
add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles');
?>
整形式マスター(親)および滑らかな子供は、いずれもテーマフォルダ(同じ階層)。
これは私のすっきりと子style.css
次のとおりです。
/*
Theme Name: Shapely-Child
Template: shapely
Theme URI: https://colorlib.com/wp/themes/shapely
Author: colorlib - modified by Sandra J./Amir R.
Author URI: https://colorlib.com/
Description: [...]
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shapely
[ ... ]
*/
あなたの返信をありがとう。残念ながら、これはトリックをしませんでした。私の側からの新しい情報が役立つかもしれませんか? Thx、Amir –
お子様のテーマに関する詳細をお知らせいただきありがとうございます。上記の私の修正された答えを見てください。 –
上記の共有関数my_theme_enqueue_stylesを変更しましたので、それを試してみてください。 –