如何激活WordPress的儿童主题?

时间:2019-07-17 04:46:10

标签: wordpress

我在wordpress上运行网站。现在,我想对其进行一些更改。所以主题开发人员说激活儿童主题,但是我不知道该怎么做。我想激活chid主题而不损坏主网站的任何内容。

1 个答案:

答案 0 :(得分:1)

您只需要使用这3个文件创建一个空白主题

  1. style.css
  2. functions.php
  3. screenshot.png(或.jpg)-是可选的,但好的做法

在主题文件夹的末尾添加-child。例如,您的主主题名称是twentyninteen。添加子主题文件夹twentyninteen-child。它不是必需的,但WordPress推荐。您可以根据需要选择任何文件夹名称。

在子主题的style.css中,将其添加到文件顶部:

/*
 Theme Name:   Twenty Ninteen Child
 Theme URI:    https://themesniper.com/twenty-ninteen-child/
 Description:  Twenty ninteen Child Theme
 Author:       Harun R Rayhan
 Author URI:   https://harunrrayhan.com
 Template:     twentyninteen
 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, 
 Text Domain:  twentyninteenchild
*/

您可以从这些详细信息中更改任何信息。在Template: twentyninteen中,将twentyninteen替换为主题的目录名称。

然后您可以在此主题中添加任何更改。进一步了解儿童主题:https://developer.wordpress.org/themes/advanced-topics/child-themes/