Alpha-store-Child不保存更改

时间:2017-05-17 作者:Dan

我对网站建设非常陌生,目前我正在尝试编辑一个主题(更改对象的颜色等)。

我基于Alpha商店创建了一个子主题,并创建了样式。css和函数。php按照alpha存储子主题设置的说明。

风格css如下

/*
 Theme Name: Alpha Store child
 Theme URI: http://themes4wp.com/product/alpha-store/
 Description: Child theme for Alpha Store
 Author: Themes4WP
 Author URI: http://themes4wp.com/
 Template: alpha-store
 Version: 1.0.0
*/
功能。php如下

<?php
/**
 * Function describe for Alpha Store child
 * 
 * @package alpha-store-child
 */

add_action( \'wp_enqueue_scripts\', \'alpha_store_child_enqueue_styles\', PHP_INT_MAX);
function alpha_store_child_enqueue_styles() {
 $parent_style = \'alpha-store-parent-style\';

 wp_enqueue_style( \'alpha-store-style\', get_template_directory_uri() . \'/style.css\' );
 wp_enqueue_style( \'alpha-store-child-style\', get_stylesheet_directory_uri() . \'/style.css\', array( \'parent-style\') );
}
然而,当我在浏览器中进行更改时,它们会在网站重新加载时消失。

我觉得这与功能有关。php作为子样式中的信息是正确的。css,但网站一直在加载父样式。css

请帮忙!

This screenshot shows how the parent style.css is overriding child style.css

此屏幕截图显示了父样式。css正在覆盖子样式。css

2 个回复
SO网友:xvilo

是否启用了子主题?使用子主题时,应启用子主题,而不是其父主题。

然而,当我在浏览器中进行更改时,它们会在网站重新加载时消失。

您是否正在使用浏览器的检查器?在那里进行更改时,还应通过FTP(位于get_template_directory_uri() . \'/style.css\').

检查员只能在本地更改内容!

SO网友:cybmeta

我可以看出孩子的主题风格。css与一起排队parent-style 依赖项,但父样式标识为alpha-store-style, 不parent-style.

您应该更改这些行:

wp_enqueue_style( \'alpha-store-style\', get_template_directory_uri() . \'/style.css\' );
 wp_enqueue_style( \'alpha-store-child-style\', get_stylesheet_directory_uri() . \'/style.css\', array( \'parent-style\') );
使用:

wp_enqueue_style( \'alpha-store-style\', get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'alpha-store-child-style\', get_stylesheet_directory_uri() . \'/style.css\', array( \'alpha-store-style\') );

结束

相关推荐

Child-theme breaks site

所以,我有一个子主题,里面除了所需的CSS文件之外什么都没有。一旦我激活了这个儿童主题,我的整个网站就关闭了。最后我有两个问题:激活一个只有CSS的子主题怎么能破坏我的网站</我怎样才能回到我原来的主题</这些是网站给我的错误:Warning: require_once(/wp-content/themes/interio_child/admin/options-framework.php) [function.require-once]: 无法打开流:中没有此类文件或目录/wp-c