2014-01-12 72 views
0

我有一個WordPress的問題,我已經創建了所有需要的文件,包括style.css index.php等,但該頁面沒有樣式。在包頭,除其他事項外,我已經把其他該style.css不能在wordpress中工作

<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" /> 
+0

你的目錄是什麼樣的?解析的HTML如何查看? – BenM

回答

2

添加樣式表比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"); 
} 

使用變薄添加style.css文件:

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

我有同樣的問題,但我在我的代碼仔細尋找固定它。這是我以前寫的:

<link href="<?php bloginfo('stylesheet_url'); ?> rel="stylesheet" type="text/css" media="all" /> 

除了下面的代碼幫我解決了這個問題:

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

你能看到區別?如果您有任何問題,請在下面評論。

4

添加以下到你的functions.php,它應該工作。

function EnqueueMyStyles() { 
    wp_enqueue_style('my-custom-style', get_template_directory_uri() . '/css/my-custom-style.css', false, '20150320'); 

    wp_enqueue_style('my-google-fonts', '//fonts.googleapis.com/css?family=PT+Serif+Caption:400,400italic', false, '20150320'); 

    wp_enqueue_style('my-main-style', get_stylesheet_uri(), false, '20150320'); 
    } 
} 
add_action('wp_enqueue_scripts', 'EnqueueMyStyles');