我正在导入另一个css文档中的一些css文件,就像这样,但是基础。当我访问这个位置时,css文件的样式表得到了403,我的ftp说它就在那里,而且都在本地工作。该站点处于活动状态here 用户名:anders pass:reading61我不知道发生了什么事。
/*
Theme Name: git.Austin.Kitson.org
Theme URI: http://austin.kitson.org
Description: A Wordpress version of Austin.kitson.org
Author: springmethod
Author URI: http://springmethod.com
Version: 1.0
*/
/*import styles for zurbs foundation*/
@import url("stylesheets/foundation.css");
@import url("stylesheets/app.css");
[if lt IE 9] @import url("stylesheets/ie.css");
这是我的功能。php css注册和排队(如果有帮助)
//LOAD CSS
function load_css_styles(){
if (!is_admin()){
wp_register_style(\'css_main\', get_template_directory_uri() . \'/style.css\');
wp_enqueue_style(\'css_main\');
}// if not admin ends
}// css_styles ends
add_action(\'wp_enqueue_scripts\', \'load_css_styles\');