wordpress主题中有父子主题。我需要为客户工作。登录时,已选择子主题。但是,我需要修改布局。它的设置方式是在父主题 functions.php
中,有一个函数可以获取函数文件夹中的所有文件
// Require all files in the function folder
function parent_theme_require_files() {
$path = WP_CONTENT_DIR . '/themes/parent_theme/includes/functions/';
foreach(glob($path.'*.php') as $file){
require $file;
}
}
parent_theme_require_files();
功能文件夹包括自定义程序,布局,图像等文件夹。我想编辑的文件位于layouts文件夹中。在layouts文件夹中,有不同的页眉,页脚等布局选项。您可以在wordpress仪表板中的 Apperance -> Customize
内选择选项。
那么如何在子主题中编辑布局头文件呢?它的路径是"/themes/**parent_theme**/includes/layouts/header/header-1row-logo-phoneblurb.php"
,我想以某种方式将其更改为"/themes/**child_theme**/includes/layouts/header/header-1row-logo-phoneblurb.php"