我在wordpress中设置了子主题,并且子主题中的style.css和functions.php正常工作。我现在想用子主题中的版本覆盖其他模板.php文件。但我似乎无法使这些文件覆盖父主题。
子主题functions.php:
<?php
//enqueue styles
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 'overwrite' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
//overwrite template pages
function overwrite() {
wp_enqueue_script( get_template_directory_uri() . '/inc/structure/hooks.php' );
wp_enqueue_script( get_template_directory_uri() . '/inc/structure/header.php' );
}
我在/ child-theme / inc / structure /
中有一个hooks.php和header.php答案 0 :(得分:1)
对于子主题,您不需要将任何模板(PHP)文件排入队列,只需将PHP文件添加到您的子主题中,其名称和路径与您尝试在父主题中覆盖的名称和路径完全相同它自然会取代它。