2017-05-18 62 views
0

我提出具有使用簡碼功能的一個插件,雖然簡碼會在頁面的地方,它會返回一個很好DESGIN形式 例如:https://www.screencast.com/t/XTteV6u8qw加載特定的CSS文件 - WordPress的

現在,如果我添加bootstrap css/classes我當前的主題搞砸了,

我想要任何主題的功能,我的短代碼功能顯示設計將保持不變。 有關它如何可能的任何想法?

任何信息將不勝感激。謝謝!

+0

這一個所有幫助你... https://wordpress.stackexchange.com/questions/165754/enqueue-scripts-styles-when-shortcode-is-present –

回答

2

您可以編寫該短代碼內容的內部CSS,如下例所示。

function shortcode_func($atts) { 

    $returnString = '<style>'; 
    $returnString .='#shortcode-id{background-color:yello;}'; 
    $returnString .= '</style>'; 

    $returnString .='<div id="shortcode-id"></div>'; 
    return $returnString; 
} 

add_shortcode('shortcode-name', 'shortcode_func');

相關問題