0

以下のコードを使用して、カテゴリ「html」の投稿に関連付けられたタグのリストを表示しようとしています

<ul>
    <?php
        query_posts('category_name=bikes');
        if (have_posts()) : while (have_posts()) : the_post();
             if( get_the_tag_list() ){
                echo $posttags = get_the_tag_list('<li>','</li><li>','</li>');
            }
         endwhile; endif; 
         wp_reset_query(); 
    ?>
</ul>

実行しても結果が表示されませんが、確認したところ、カテゴリ内の投稿に関連付けられたタグがたくさんあります。

誰でも助けることができますか?

4

2 に答える 2

1

$posttags =変数を割り当てたくないので削除する必要がありますが、それを出力します

<ul>
    <?php
        query_posts('category_name=bikes');
        if (have_posts()) : while (have_posts()) : the_post();
           if( get_the_tag_list() ){
              echo get_the_tag_list('<li>','</li><li>','</li>');
           }
        endwhile; endif; 
        wp_reset_query(); 
    ?>
</ul>
于 2013-01-06T14:33:18.937 に答える