子主题中.php文件的更改未应用到我的前端站点。
我已经从父级“成长”中激活了一个名为“成长儿童”的 WordPress儿童主题。
我想更改网站上的页脚文本和链接,因此,按照说明,我已将 footer.php 文件(实际上名为04.footer.php)从父目录复制到了子主题文件夹。我进行了更正,但未将其应用于我的网站。 怎么了?
当我直接在父目录中进行了相同的更正后,它们已很好地应用于我的网站。
我在子主题的 functions.php 中使用以下代码:
<?php
add_action( 'wp_enqueue_scripts', 'grow_child_enqueue_styles' );
function grow_child_enqueue_styles() {
$parent_style = 'grow'; // This is 'grow-style' for the grow theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'grow-child',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
?>
我想在子主题文件夹中更改父主题文件,以便在更新主题时不会丢失所做的更改。