我正在做一个子主题,只是为了修补父主题中的一个bug。这是我第一次这样做。
我有:
风格。css<;-加载父样式函数的必需文件。php<;--强制文件屏幕截图。png<;--图像正确加载内容foo。php<;--它使用正确,我的问题是,当我激活子主题时,主题定制器中的每个管理选项都不再绑定。即使我再次保存背景图像、徽标或任何颜色,网站和预览也无法识别它。
我知道我不需要覆盖标题。php,索引。php…:answer here
style.css
/*
Theme Name: Foo Patches
Theme URI: https://...
Description: To fix Foo theme.
Author: <a href="https://...">John Doe</a>
Author URI: https://...
Version: 1.0
License: Comercial
License URI: http://...
Tags: left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, full-width-template, theme-options, translation-ready
Text Domain: Foo Child
Template: foo
*/
/* You can start adding your own styles here. Use !important to overwrite styles if needed. */
functions.php
add_action( \'wp_enqueue_scripts\', \'foo_patches_enqueue_styles\' );
function foo_patches_enqueue_styles() {
wp_enqueue_style( \'foo_style\', get_template_directory_uri() . \'/style.css\' );
}
那么会发生什么呢?有人有主意了?