Wordpress - 我如何从其他自定义帖子中获取_categories?

Posted

技术标签:

【中文标题】Wordpress - 我如何从其他自定义帖子中获取_categories?【英文标题】:Wordpress - How can I get_categories from additional custom post? 【发布时间】:2022-01-19 05:41:30 【问题描述】:

我的目标是从我在functions.php 中注册的附加自定义帖子中获取类别。如何获取它的类别并在我的页面上回显它?到目前为止,这是我的代码: 来自页面:

 <?php
   $args = array(
   'post_type' => 'pdf',
   'orderby' => 'slug',
   'order' => 'ASC',
   'parent' => 0,
   'hide_empty' => false
   );
   $categories = get_categories($args);
   foreach( $categories as $category )
   echo '<option><a class="ctg" href="'. get_category_link( $category->term_id ) .' ">' . $category->name . '</a></option>';
   
  ?>      

来自functions.php

  $args = array(
   'label' => 'category',
   'public' => true,
   'show_ui' => true,
   'show_in_nav_menus' => true,
   'show_admin_column' => true,
   'hierarchical' => true,
   'query_var' => true
  );
    register_taxonomy('pdf_cat','pdf',$args);
   

点击特定类别时回显现有帖子:

                    <?php
                  $cat = get_the_category();
                  $cat = $cat[0]; 
                  $catname = get_cat_name($cat->term_id); 
                  $catid = get_cat_ID($catname);  
                ?>
                  
                <?php
                      $paged = get_query_var('paged', 1);
                      $args = array(  
                          'post_type' => 'pdf',
                          'paged' => $paged,
                          'post_type' => 'post',
                          'cat' => $catid,
                      );
                      $query = new WP_Query($args);         
             
                  global $query_string; 
                  query_posts( $query_string . "&posts_per_page=15&paged=".$paged );
                  while ( have_posts() ) : the_post()
                ?>

【问题讨论】:

【参考方案1】:

wordpress 中自定义帖子类型的类别使用分类功能。在这种情况下,您可以使用get_terms 获取“类别”。

例子

$categories = get_terms([
    'taxonomy' => 'pdf_cat',
    'hide_empty' => false,
]);

【讨论】:

但是当我点击特定类别名称时如何回显它?我发布了我的新代码 @maru 您只需回显对象,$categories 只是一个数组,因此只需使用 for-each 对其进行迭代,然后回显分类对象的属性 嗨@infamoustrey 希望你能帮我解决我的问题***.com/questions/70417765/…

以上是关于Wordpress - 我如何从其他自定义帖子中获取_categories?的主要内容,如果未能解决你的问题,请参考以下文章

如何从一组自定义字段值中显示 Wordpress 帖子

从 Wordpress 取消注册自定义帖子类型

Wordpress - 从自定义帖子类型中删除子菜单

如何在 wordpress 中显示自定义帖子类别名称列表

WordPress - 无法从自定义帖子类型中的元框获取价值

如何在wordpress中为帖子创建自定义属性[关闭]