几天前,我创建了一个主题zerif lite的子主题。一切看起来都很好,根本没有问题。
我只想知道functions.php
和style.css
文件是否正确。我在我的子主题中添加了一些已经存在于父主题中的优化文件(未优化但相同的文件),但我怀疑是否有相同的文件从父主题和子主题加载了2次。我想确保相同的文件不会加载两次。
这是我的风格。子主题css:
/*
Theme Name: Zerif Lite Child
Theme URI: http:/only4gamers.ml
Description: Zerif Lite Child Theme
Author: Md Umar
Author URI: http:/only4gamers.ml
Template: zerif-lite
Version: 1.0.0
License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns,right-sidebar, responsive-layout, accessibility-ready Text Domain: zerif-lite-child
*/
这是子主题的函数文件:
<?php
function my_theme_enqueue_styles() {
$parent_style = \'zerif-style\';
wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
get_stylesheet_directory_uri() . \'/style.css\',
array( $parent_style ),
wp_get_theme()->get(\'Version\')
);
}
add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
?>
我是wordpress的新手,对编码知之甚少。非常感谢您对我的风格和功能文件的任何改进。