我的样式表没有出现在主题编辑器中

时间:2014-11-23 作者:user52466

我不知道为什么会发生这种情况,但我的样式表没有出现在主题编辑器中。这只是存档方式。css。其他模板正常显示。在标题中。php,我正在使用以下代码:

<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
但我也试过:

 <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" />
而且不起作用。我在codex中找到了以下代码。wordpress和问题仍然存在。

function my_theme_add_editor_styles() {
    add_editor_style( \'custom-editor-style.css\' );
}
add_action( \'after_setup_theme\', \'my_theme_add_editor_styles\' );
我不知道我还能做什么。enter image description here

/******** 
* Theme Name: Theme 2014
* Description: Theme 2014 - My theme 2014. 
* Version: 3
* Author: J
* Author URI: 
* Theme URI: 
* Tags: Black, White, Minimalist
********/

1 个回复
SO网友:user3369380

尝试

<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>/path/to/custom-editor-style.css" />
检查在服务器上对样式表进行编码

结束

相关推荐