2015-02-11 129 views
0

我想問爲什麼我的樣式表不顯示在網頁的頁面源。請參閱下面的代碼,這是我的functions.php中的代碼。在WordPress中添加樣式表

`function theme_styles() { 

     wp_enqueue_style('main', get_template_directory_uri() . '/style.css'); 
    } 

    add_action('wp_enqueue_scripts', 'theme-styles');` 

我相信我輸入了正確的代碼,但每當我在網頁上點擊右鍵並尋找源代碼,我的樣式表沒有顯示。我正在使用WebMatrix,我的style.css位於我目前正在使用的主題文件夾下。我是WordPress新手,我正在嘗試創建自己的自定義主題。任何幫助將不勝感激。

太感謝你了,

吉爾伯特雅各

回答

0

沒關係,我發現我的theme_styles使用下劃線和我在動作用一個主題風格。謝謝!

1

試試這個:

function my_theme_load_resources() { 
    $theme_uri = get_template_directory_uri(); 
    wp_register_style('style_css', $theme_uri.'/style.css', false, '0.1'); 
    wp_enqueue_style('style_css'); 
} 
add_action('wp_enqueue_scripts', 'my_theme_load_resources'); 
2

試試這個:

wp_enqueue_style('themename-style', get_stylesheet_uri());