如何使用我的Wordpress分类法术语创建引导标签

时间:2018-11-13 06:30:42

标签: wordpress

如果我的问题令人困惑,请原谅我,但是这是我用wordpress创建的客户团队页面需要完成的工作。

我想将自定义分类的类别/术语放在“引导”选项卡中作为类别。

TAB 1类别1

-标签内容

TAB 2类别2

-标签内容

以此类推...

目前这是我的分类术语代码,用于显示类别术语和内容。

             <?php
              $custom_terms = get_terms('group');
              foreach($custom_terms as $custom_term) {
              wp_reset_query();
              $args = array('team' => 'team',
                  'tax_query' => array(
                      array(
                          'taxonomy' => 'group',
                          'field' => 'slug',
                          'terms' => $custom_term->slug,
                      ),
                  ),
               );
               $loop = new WP_Query($args);
               if($loop->have_posts()) {
                  echo '<div class="team-item">';
                  echo '<h3 class="terms-title">'.$custom_term->name.'</h3>';
                  echo '<ul class="post-list">';

                  while($loop->have_posts()) : $loop->the_post();
                      echo '<li>' .the_post_thumbnail('default-thumbnail'). '</li>';
                      echo '<li>' .get_the_title(). '</li>';
                      echo '<li>' .the_content(). '</li>';

                  endwhile;
                  echo "</ul>";
                  echo '</div>';
               }
              }
                ?>

非常感谢您的帮助。谢谢

0 个答案:

没有答案