请注意,我对php知之甚少,因此我可能需要一些额外的帮助。所以,我不久前在Wordpress中为Astra设置了一个儿童主题。虽然到目前为止一切正常,但我只是注意到customizer预览页面没有工作,或者根本没有完全加载。
我查看了整个插件停用的内容,但它没有改变任何东西,所以当我切换到我的父主题时,我注意到定制器工作正常。这意味着问题来自我的孩子主题。
我将在这两种样式中的内容下面列出。css和函数。php文件的我的孩子的主题,请让我知道如果有什么问题。
/*
Theme Name: X Child Theme // Made by Y
Author: Y
Description:
Template: astra
*/
功能。php文件
<?php
function astra_child_enqueue_parent_theme_style() {
// Dynamically get version number of the parent stylesheet (lets browsers re-cache your stylesheet when you update your theme)
$theme = wp_get_theme( \'astra\' );
$version = $theme->get( \'Version\' );
// Load the stylesheet
wp_enqueue_style( \'parent-style\', get_template_directory_uri().\'/style.css\', array(), $version );
}
add_action( \'wp_enqueue_scripts\', \'astra_child_enqueue_parent_theme_style\' );
?>
有什么想法?
编辑:我的错,我实际上是想在那里写模板。它在样式中声明为Templare:。css文件。评论块也在那里。我会编辑我的帖子来修复它。无论如何,非常感谢