2017-10-05 94 views
1

我有一個使用Visual Composer構建的頁面,並且我想將此頁面內容顯示到其他頁面(產品類別),它不起作用。Visual Composer未顯示特定頁面樣式[產品類別]

我使用的代碼:

Vc_Manager ::的getInstance() - > VC() - > addShortcodesCustomCss($ PAGE_ID);

在該溶液中

Visual Composer not showing specific page styles

步驟1:構建具有ID頁A = 100

步驟2:網頁A的查看內容到頁B(使用id = 105的其他頁),它效果很好!

第3步:第一個觀的內容製作成網頁C(產品類別與term_id = 30),不工作,不vc_custom_XXX CSS輸出

我覺得我必須在這裏失去了一些東西?誰能給我一些解決方案。感謝

回答

0

我的代碼,它的工作!

$content = get_post($id)->post_content; 
    $content_css = visual_composer()->parseShortcodesCustomCss($content); 
    if (! empty($content_css)) { ?> 
     <style type="text/css" data-type="vc_shortcodes-custom-css"> 
      <?php echo strip_tags($content_css); ?> 
     </style> 
    <?php } 
相關問題