What you miss is that in your functions.php codesnippet above you failed to name your own parent style.
在上面第4行中发布的代码中,需要根据实际父样式的名称进行自定义。
So as an example this line:
$parent_style = \'parent-style\'; // This is \'twentyfifteen-style\' for the Twenty Fifteen theme.
should look like this 如果使用Divi:
$parent_style = \'divi-style\'; // This is \'divi-style\' for the Divi theme.
要找出在您的案例中应该放置什么而不是“父样式”,请转到父主题文件夹并打开原始(或现在的父)函数。php,然后搜索“wp\\u enqueue\\u style”。您会发现类似的情况:
wp_enqueue_style( \'divi-style\', get_stylesheet_uri(), array(), $theme_version );
这就是我使用Divi主题的情况。查看函数的第一个属性。这就是你需要的。另一个例子:在案例二零一五中,第一个属性是:“二零一五样式”
因此,一旦找到父样式使用的标记名,请相应地更新第四行。
希望有帮助。