SO网友:Chris H. Aus LE
在开始更改主主题中的代码之前,您应该明确创建Wordpress子主题。这样,对主主题的更新不会覆盖对主题文件所做的更改。
查看此Wordpress教程,了解如何创建子主题:https://codex.wordpress.org/Child_Themes
基本上,它分解为-为您的子主题创建一个文件夹-在该文件夹中,创建一个文件“style.css”-在该文件中,您覆盖父样式的css类,以根据您的喜好设置输出样式。
你的风格。css应以以下代码块开始:
/*
Theme Name: Your child theme name
Description: The description of your child theme
Author: SEOmann.de
Author URI: https://seomann.de
Template: folder-name-of-your-parent-theme
Version: 1.0
Text Domain: folder-name-of-your-child-theme
*/
在下面,您可以定义类来覆盖父类:
span.highlight {
color: green;
}