我遇到了一个问题,并希望有人可能有一个可以帮助我的建议。 我正在尝试创建一个子主题,以便我可以对我的Wordpress v 4.1.1中的某些样式和某些页面函数进行一些更改
我的问题是,当我激活我的孩子主题时,我的网站全部为空白(白色),所有可见的是屏幕顶部的wordpress管理面板工具栏。 我按照这里的说明操作 https://codex.wordpress.org/Child_Themes
我的父主题名为qk_theme,位于 WP-内容/主题/ qk_element
所以我创建了一个新的文件夹 wp-contents / themes / qk_element-child
在我的新文件夹中,我有一个包含
的style.css文件/*
Theme Name: qk_element Child
Theme URI: example.com
Description: A child theme based on qk_elemen
Author: Jay
Author URI: none
Template: qk_element
Version: 1.0
Tags: Light, Gray, White, Custom Background, Custom Menu, Editor Style, Featured Images, Flexible Header, Full Width Template, Microformats, Post Formats, RTL Language Support, Sticky Post, Theme Options, Translation Ready
Text Domain: qk_element-child
* /
然后我有一个function.php文件,我有
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles()
{
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')
);
}
有什么建议吗?