2013-01-07 46 views
0

標籤雲很多黑客約我使用下面的代碼來生成被用於所謂的「審覈」自定義後類型中當前類別的標籤列表後...轉換列表到WordPress中

<?php 
$cat_id = get_query_var('cat'); 
query_posts('post_type=review&posts_per_page=-1&cat='.$cat_id); 
if (have_posts()) : 
$posttags = array(); 
while (have_posts()) : the_post(); 
    if(get_the_tag_list()){ 
    $posttags = array_merge($posttags, explode('||', get_the_tag_list('','||',''))); 
    } 
endwhile; 
$posttags = array_unique($posttags); 
sort($posttags); //sort optional 
    if($posttags) { 
    echo '<ul><li>'; 
    echo implode("</li>\n<li>", $posttags); 
    echo '</li></ul>'; 
    } 
endif; wp_reset_query(); 
?> 

這工作正常,並輸出正確的列表,但我想把這個列表變成標籤雲,任何人都可以幫忙嗎?

+0

參見[此鏈接](HTTP://codex.wordpress .org/Function_Reference/wp_tag_cloud)相關的wordpress功能和php使用示例。 – chuff

+0

是的,我已經完成了所有這些工作,我試圖將已經生成的列表轉換爲標籤雲。我不確定這個功能會讓我這麼做,還是我錯了? – fightstarr20

+0

你爲什麼要使用你的列表? –

回答

0

您可以使用此,

http://codex.wordpress.org/Function_Reference/wp_tag_cloud 

要不然去與一些插件,

https://wordpress.org/plugins/ultimate-tag-cloud-widget/ 

希望這有助於你