我在wordpress中设置了子主题, 并且子主题中的style.css和functions.php正常工作。我现在想用子主题中的版本覆盖其他模板.php文件。我似乎无法使这些文件覆盖父主题。
【wordpress子主题(如何覆盖模板.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
#1对于子主题, 你无需排队任何模板(PHP)文件, 只需将一个PHP文件添加到你的子主题中, 其名称和路径与你试图覆盖父主题的名称和路径完全相同, 它将自然地替换它。
推荐阅读
- WordPress子主题(覆盖函数)
- 子目录中的WordPress子主题文件未覆盖
- WordPress子主题,添加辅助菜单
- WordPress(无法访问仪表板)
- Web基础
- 常见分布式理论(CAPBASE)和一致性协议(GosssipRaft)
- #yyds干货盘点#手机APP消息推送极光推送jpush-php实例
- Spring认证中国教育管理中心-Spring Data Elasticsearch教程三
- #yyds干货盘点#Java入门王者万字笔记(下),建议收藏!