Wp-content中的主题,但我的index.php在根目录中搜索主题文件

时间:2017-11-13 作者:Le Krenqo

我的文件位于域中。com/wp-content/Themename/css/cssfile。css

但例如,css文件是在域中查找的。com/css/cssfile

如何改变这一点?由于此原因,该网站无法正确加载任何内容!

1 个回复
SO网友:Johansson

我假设您正在标题中添加这样的样式表:

<link rel="stylesheet" type="text/css" href="css/style.css">
这行不通。要动态构建路径,需要使用为此提供的PHP函数。确保您的标题<?php wp_head(); ?> 然后将你的风格放入你的主题functions.php 文件如下:

add_action( \'wp_enqueue_scripts\', \'enqueue_my_styles\' );

function enqueue_my_styles() {
    wp_enqueue_style ( \'style-name\', get_template_directory_uri() . \'/css/style.css\' );
}
这将自动将主题的URI前置到CSS文件中,并将其输出到主题的标题中。

结束

相关推荐

Could not create directory

我已经按照https://help.ubuntu.com/community/WordPresshttps://www.digitalocean.com/community/tutorials/how-to-configure-secure-updates-and-installations-in-wordpress-on-ubuntu每次尝试更新或安装新插件时,都会出现以下错误:Downloading update from https://downloads.wordpress.org/plugin/