gpt4 book ai didi

css - style.css 在 wordpress 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 20:45:47 25 4
gpt4 key购买 nike

我在使用 Wordpress 时遇到问题,我已经创建了所有需要的文件,包括 style.css index.php 等等,但页面没有样式。在标题中,除其他外,我已经把这个

<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/css/bootstrap-responsive.css" />
<link rel="stylesheet" type="text/css" href="text/css" href="<?php bloginfo('template_url'); ?>/css/style.css" />

最佳答案

添加除style.css以外的样式表,打开function.php并添加以下代码。

add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
function theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() . "/css/bootstrap.css" );
wp_enqueue_style( 'style-name', get_stylesheet_uri() . "/css/bootstrap-responsive.css" );
}

使用 thins 添加 style.css 文件:

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">

关于css - style.css 在 wordpress 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21079255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com