2013-08-02 98 views
0

我似乎無法顯示子類別列表的描述。到目前爲止,我有這個無法顯示子類別列表的描述

<?php 
$subcategories = get_categories('&child_of=5&hide_empty'); 
foreach ($subcategories as $subcategory) { 
    echo '<div style="position:relative;float:left;width:100%;margin:0 0 20px 0;border-bottom:1px dashed #cdcdcd;padding:0 0 20px 0">'; 
    echo sprintf(' 
    <a class="newstitle" href="%s" style="margin:0">%s</a>', get_category_link($subcategory->term_id), apply_filters('get_term', $subcategory->name)); 
    echo '<br /><br />'; 
    echo '</div>'; 
} 
?> 

此列出了子類別稱號罰款正確的聯繫,但我似乎無法顯示下兩個換行的說明。

謝謝

回答

1

你應該嘗試這樣的事情。

<?php 
$subcategories = get_categories('&child_of=5&hide_empty'); 
foreach ($subcategories as $subcategory):?> 
<div style="position:relative;float:left;width:100%;margin:0 0 20px 0;border-bottom:1px dashed #cdcdcd;padding:0 0 20px 0"> 
    <a class="newstitle" href="<?php echo get_category_link($subcategory->term_id) ?>" style="margin:0"><?php echo apply_filters('get_term', $subcategory->name) ?></a> 
    <div class="cat-desc"> 
     <p> 
      <?php echo category_description($subcategory->term_id); ?> 
     </p> 
    </div> 
    <br /><br />  
</div> 
<?php endforeach ?> 
+0

非常感謝,它完美的作品! :) –

相關問題