我创建了一个子主题来在TESSERACT 2
主题(购买了白色标签)适用于Tesseract2
主题,但不是我的孩子主题。加上子主题加载速度非常慢。
两个问题合一。。。有人对修复有想法吗?
这就是我在style.css
:
/*
Theme Name: TESSERACT Child
Theme URI: tesseracttheme(dot)com
Description: Tesseract Child Theme
Author: Giovanni Yarabek
Author URI: (same as above/my site)
Template: TESSERACT
Version: 1.0.0
Text Domain: tesseract-child
*/
这就是我在
functions.php
:
<?php
function my_theme_enqueue_styles() {
$parent_style = \'parent-style\'; // This is \'tesseract-style\' for the TESSERACT theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
get_stylesheet_directory_uri() . \'/style.css\',
array( $parent_style ),
wp_get_theme()->get(\'Version\')
);
}
add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\' );
?>
这是
site 正在建造中。我将不胜感激。
SO网友:Ethan O\'Sullivan
通过阅读您的问题,我假设您的网站在激活自己的儿童主题之前运行顺利,您可以确认是您的儿童主题减慢了您的网站。
对于子主题的CSS,它应该包括父主题的style.css
如下所示:
/*
Theme Name: TESSERACT Child
Theme URI: http://tesseracttheme.com/
Description: Tesseract Child Theme
Author: Giovanni Yarabek
Author URI: http://sanmiguelmagazine.com
Template: TESSERACT
Version: 1.0.0
Text Domain: tesseract-child
*/
/* Imports style from the parent theme
-------------------------------------------------------------- */
@import url(\'../TESSERACT/style.css\');
/* Styling customization starts here
-------------------------------------------------------------- */
否则,网站的样式将无法正常工作。
在运行了一些测试工具之后,不仅仅是您的孩子主题减慢了您的网站速度。有几个因素会减慢你的网站速度。您可以在下面获得有关这些报告的更多详细信息:
有一些web优化技术;帮助WordPress网站平稳运行的插件: