二十五个子主题正在localhost上工作,但不在外部服务器上

时间:2015-03-12 14:42:20

标签: php css wordpress themes

我制作了一个以二十五主题为主题的儿童主题。我在我的localhost中获得主题工作,但它在外部服务器中不起作用。因此,如果我在childtheme style.css中更改背景颜色等,它在localhost中工作,但在外部服务器中它不起作用。

以下是 style.css

中的代码
/*
Theme Name:   Twenty Fifteen Melior
Theme URI:    http://www.meliorvalmennus.fi/themes/twentyfifteenmelior/
Description:  Twenty Fifteen Child Theme for Melior
Author:       Aila Mustonen
Author URI:   http://www.meliorvalmennus.fi
Template:     twentyfifteen
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         light blue, two-columns, left-sidebar, responsive-layout, accessibility-ready
Text Domain:  twenty-fifteen-melior
*/

这是我的 functions.php

<?php
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    }

我不明白是什么事?我没有在外部服务器上收到任何错误消息。我是一个很新的儿童主题和wordpress。

0 个答案:

没有答案