我需要连接一个CSS文件,以便可以从中编辑该站点的所有CSS文件 包括botton.min.css
之类的文件通过functions.php文件,不再显示 static2.keep4u.ru/2018/11/10/nnnnnd8073f6a38d659d0.jpg
我使用的输出
function spon_style() {
wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' );
}
add_action( 'wp_enqueue_scripts', 'spon_style' );
答案 0 :(得分:0)
只需访问您的header.php文件并在标记之前添加样式:
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri() ?>/spon.css" />