如何基于标签在wordpress中创建循环?

时间:2016-10-23 02:24:46

标签: php wordpress

我在我网站上的每个自定义帖子中都加了标签。当用户点击其中一个代码时,我希望他们转到使用该特定代码吐出所有自定义帖子的页面。我有一个tag.php页面,其中包含我需要的所有html / css。我该如何创建这个循环?

我的网站已经完成了这个,除了类别,所以我一直在尝试修改类别代码以吐出标签。这是我用于我要修改的类别的代码,用于标记 -

  <?php       
          query_posts( array( 'post_type' => 'custom', 'posts_per_page' => -1,
             'tax_query' => array(
             array(
               'taxonomy' => 'custom_categories',
               'field' => 'slug',
               'terms' => $term->slug
             )),
            )
           );

           if ( have_posts() ) : while ( have_posts() ) : the_post(); 
           $imagecustom = wp_get_attachment_image_src(                      
 get_post_thumbnail_id( get_the_ID() ), 'single-post-thumbnail' ); 
           $files_url = explode("uploads", $imagecustom[0]);
           $image_url= home_url('/').'wp-content/timthumb.php?
  src=/uploads'.$files_url[1].'&w=200&h=200&zc=1'; 
           $args = array(
            'post_id' => get_the_ID(), // use post_id, not post_ID
           'count' => true //return only the count
           );
            $commentsalltype = get_comments($args); ?>

0 个答案:

没有答案