您错过的是,在上面的代码片段中,您未能命名自己的父样式。
在代码中,您在上面第4行中发布的内容需要根据实际父样式的名称进行自定义。例如,这一行:
$parent_style = \'parent-style\'; // This is \'twentyfifteen-style\' for the Twenty Fifteen theme.
在使用Divi时应如下所示:
$parent_style = \'divi-style\'; // This is \'divi-style\' for the Divi theme.
找出你应该把什么放在那里而不是
parent-style
在您的情况下,转到父主题文件夹并打开原始主题(或现在的父主题)
functions.php
, 在那里搜索
wp_enqueue_style
.
您会发现类似的情况:
wp_enqueue_style( \'divi-style\', get_stylesheet_uri(), array(), $theme_version );
这就是我使用Divi主题的情况。查看函数的第一个属性。这就是你需要的。
另一个例子:如果是215,第一个属性将是twentyfifteen-style
.
因此,一旦找到父样式使用的标记名,请相应地更新第四行。