php – 如何在wordpress主题中包含styles.css?
作者:互联网
我试图将styles.css样式表包含在我正在尝试开发的wordpress主题中(我的第一个).问题:如何包含它?我知道将以下代码放在我的header.php文件中:
<link rel="stylesheet" href="<?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’中删除该行时,我的样式没有被看到?
解决方法:
以下方法包括style.css.
方法 – 1
// add in your header.php
<link rel="stylesheet" href="<?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' );
标签:php,wordpress,wordpress-theming 来源: https://codeday.me/bug/20191007/1866167.html