1

我创建了 Wordpress 罗琳主题的子主题。我的 style.css 包含以下内容:

    /*
    Theme Name: MF2017
    Theme URI: 
    Description: rowling Child Theme
    Author: Kathrin Herwig
    Author URI: https://schriftbild.net
    Template: rowling
    Version: 1.0.0
    */

和functions.php这个:

    <?php
    /**
    * Enqueue scripts and styles.
    */
    function namescript_scripts() {
    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')
      );
    }
    add_action( 'wp_enqueue_scripts', 'namescript_scripts' );

     ?>

子主题的 css 加载到我的test-webspace上,图像周围的类.grau: grey框架来自子主题的 css)。但不是在真正的网站上。(.grau 未加载)

我尝试了一切,但无法使其工作。

4

2 回答 2

1

可能是你弄乱了主题名称。子主题名称应为“主题名称孩子”,如“罗琳孩子”按照下面的代码,

/*
 Theme Name:   Rowling Child
 Theme URI:    http://example.com/rowling-child/
 Description:  Rowling Child Theme
 Author:       Kathrin Herwig
 Author URI:   https://schriftbild.net
 Template:     rowling
 Version:      1.0.0
 Text Domain:  rowling-child
*/

有关更多详细信息,请查看此链接https://codex.wordpress.org/Child_Themes

于 2017-02-06T16:12:10.867 回答
1

它似乎与访问权限/文件权限有关:当我使用浏览器工具/样式并单击子主题 style.css 时,或者当我单击源代码中 CSS 文件的链接时,我得到看到这个:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /wp-content/themes/MF2017/style.css
on this server.</p>
</body></html>

所以不允许浏览器加载样式表。检查该服务器上文件及其文件夹的访问权限/文件权限并将其设置为公共。

于 2017-02-06T16:17:27.380 回答