为ThemeCo的Theme X创建一个Wordpress子主题

时间:2015-07-13 12:27:00

标签: css wordpress import

我想为Theme X创建一个wordpress子主题。

如何从主题X的原始样式导入CSS?

3 个答案:

答案 0 :(得分:1)

您可以在此处下载X的官方子主题:https://community.theme.co/kb/how-to-setup-child-themes/

或者您可以创建自己的,只要您编辑子的style.css以包含这样的行,因为X不会将其CSS存储在同一个文件中: @import url( '../x/framework/css/site/stacks/integrity-light.css');

来源:https://community.theme.co/forums/topic/child-theme-not-working/

答案 1 :(得分:0)

为任何主题创建子主题的通用步骤:

1)在wordpress的主题目录中创建一个目录:      / WordPress的/ htdocs中/可湿性粉剂内容/主题/你的孩子主题

2)在该目录中创建 style.css 文件。

3)打开新创建的style.css文件并添加标题信息:

   /*
    Theme Name: Your child theme name
    Author: Author name
    Template: Your parent theme name
   */

4)导入父主题样式表,     在标题中添加 style.css

@import url('../Your_parent_theme/style.css'); 

如果您的父主题只有一个样式表,那么这些步骤就足够了。否则,您可以添加多个导入语句。

检查wordpress codex:https://codex.wordpress.org/Child_Themes

答案 2 :(得分:0)

请注意,与大多数其他主题一样,没有与主题zip存档一起打包的子主题。您必须登录Themeco's member area才能下载,这需要使用Envato用户名和主题购买代码进行注册。