您好我是wordpress的新手。我已经创建了一个wordpress主题(用于网站开发),它现在只有Index,header,footer文件和style.css,我想将Responsive.css链接到index.php页面,该页面存储在“/css/responsive.css”中“
我知道我们可以通过以下方式链接style.css:<link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" type="text/css">
但我很困惑,我如何将响应式CSS与页面链接起来。请帮帮我。
答案 0 :(得分:0)
在主题的functions.php
文件中,您需要添加以下内容:
function so_38294160_enqueue_style() {
wp_enqueue_style( 'responsive', get_stylesheet_directory_uri() . '/css/responsive.css' );
}
add_action( 'wp_enqueue_scripts', 'so_38294160_enqueue_style' );
请注意,您的主题中需要wp_head()
和wp_footer()
。阅读食典委中的theme development。