2013-01-12 56 views
0

可能重複:
How To Include CSS and jQuery in my wordpress plugin?如何在Wordpress中的PHP文件中調用css?

我要加上一個WordPress插件

我要添加按鈕的樣式,我知道基本的方法來調用一個按鈕將一個css文件轉換成一個html文件。

<link rel="stylesheet" type="text/css" href="buttonPro.css"> 

,但它不是工作的一個php文件

+0

顯示您的代碼。另外檢查這個http://stackoverflow.com/questions/3760222/how-to-include-css-and-jquery-in-my-wordpress-plugin – Rikesh

+0

典型的PHP文件只輸出HTML,所以這將工作。 (所有其他條件相同,級聯的通常規則並且必須具有正確的URL) – Quentin

回答

0

你可以這樣調用:

<link rel="stylesheet" href="<?php bloginfo('template_url'); ?> 
/css/style.css" media="screen" /> 

當你的樣式表是生活在一個名爲「CSS」的子目錄和實際的文件被稱爲'style.css'。不要忘了在php中跳過HTML代碼:

<?php 
    put some php code here 
?> 

    **put some HTML code here** 

<?php 
    now you can continue with php 
?> 
相關問題