【如何在WordPress主题中包含styles.css()】我正在尝试将我的styles.css样式表包含在我尝试开发的wordpress主题中(我的第一个主题)。问题:如何将其包括在内?我知道将以下代码放入header.php文件中可以工作:
<
link rel="stylesheet" href="http://www.srcmini.com/<
?php bloginfo('stylesheet_url');
?>
">
但是我想像这样通过functions.php包含它:
<
?php
function firstTheme_style(){
wp_enqueue_style( 'core', 'style.css', false );
}
add_action('wp_enqueue_scripts', 'firstTheme_style');
?>
但这根本不起作用(当我从header.phps’ head’ 中删除该行时, 看不到我的样式吗?
#1以下方法包括style.css。
方法-1
// add in your header.php
<
link rel="stylesheet" href="http://www.srcmini.com/<
?php echo get_stylesheet_uri();
?>">
方法-2
// load css into the website's front-end
function mytheme_enqueue_style() {
wp_enqueue_style( 'mytheme-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_style' );
方法-3
// Add this code in your functions.php
function add_stylesheet_to_head() {
echo "<
link href='".get_stylesheet_uri()."' rel='stylesheet' type='text/css'>
";
}add_action( 'wp_head', 'add_stylesheet_to_head' );
#2包含styles.css文件的最佳方法是在主题functions.php中添加以下代码
函数themename_enqueue_style(){wp_enqueue_style(‘ themename-style’ , get_stylesheet_uri()); } add_action(‘ wp_enqueue_scripts’ , ‘ themename_enqueue_style’ );
推荐阅读
- 如何限制WordPress页面中的评论数
- 如何在WordPress中使用帖子ID获取帖子缩略图()
- 如何在wordpress/woocommerce中获取所有订单详细信息( [重复])
- 如何在”感谢页面”和客户电子邮件中将”帐单地址标签”编辑为”送货地址”()
- 如何从一页中排除CSS(或如何重置一页边距)
- 如何显示WordPress中每个类别的帖子数()
- 如何在WordPress中以网格布局显示带有图像的帖子类别()
- 如何在wp中的高级自定义字段上的所有页面中显示图像()
- #yyds干货盘点#大数据基础HDFS练习