Wordpress default stylesheet path

杀马特。学长 韩版系。学妹 提交于 2019-12-12 00:13:38

问题


Is there any way to change default Wordpress stylesheet path? When I move style.css to /styles/style.css folder (and updating path in header.php) I cannot load my theme from admin panel, because WP screams about broken template :-/

I tried with define('STYLESHEETPATH', get_template_directory . '/css'); in functions.php but it doesn't work.


回答1:


You must have a style.css in your theme folder since this is how WordPress identifies the theme, using the comments in the header of this file. If you wanted to host the actually CSS in a different subdirectory the easiest way would be to do a CSS import:

File style.css

/*  
Theme Name: My Theme
*/
@import url('css/style.css');

File css/style.css

* { margin: 0; padding: 0 }
body { font-size:12px; }

You can also explicitly load both files, but I would recommend the way in the example above.

Changing the STYLESHEETPATH isn't recommend since many plugins use this to determine the active theme's path, however in your example you are missing the parens for the function call to get_template_directory().



来源:https://stackoverflow.com/questions/16266763/wordpress-default-stylesheet-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!