我正在为我的新网站使用Twentyeleven主题。我创建了一个子主题,因此可以修改主题,而不会覆盖所做的更改。但一旦我激活了我的孩子主题,整个造型就消失了。我想问题在于功能。php。也许我做错了什么。有人能给我指出正确的方向吗?
这是我的职能。我的孩子主题中的php:
<?php
add_action( \'wp_enqueue_scripts\', \'theme_enqueue_styles\' );
function theme_enqueue_styles() {
wp_enqueue_style( \'parent-style\', get_stylesheet_directory_uri() . \'/style.css\' );
}