如何从父主题制作子主题? 我需要知道要成功制作一个子主题并在其中进行更改要遵循哪些步骤,这不应该影响父主题。
我尝试过研究,然后在wp-admin / themes /中创建一个文件夹。但不知道如何处理儿童主题。
提前致谢。
答案 0 :(得分:1)
您可以在此处找到有用的文章:Child Themes
这是自我解释。
答案 1 :(得分:0)
您可以像这样创建一个子主题。
< -Your Theme-> -Child-Theme /
functions.php - 空的
screenshot.png - 来自父主题或自己的
style.css -
/*
Theme Name: <-Your Theme-> Child
Description: Child theme for the <-Your Theme->
Author: <-Your Theme- Author>
Template: <-Your Theme->
*/
@import url("../<-Your Theme->/style.css");
希望这能帮助您创建一个儿童主题。