从自定义 post 类型的 Wordpress 类别中获取 posts

Getting posts from category of custom post type Wordpress

我有下面的代码,用来创建一个分类。我如何使用此类别获得 posts?我可以获取该类别的id,但无法获取该类别的所有post。

function create_taxonomy()
{
    $labels= array(
    'name' => 'Kategórie',
    'singular_name' => 'Kategórie',
    'search_items' => 'Vyhladať kategórie',
    'all_items' => 'Všetky kategórie',
    'edit_item' => 'Upraviť',
    'update_item' => 'Aktualizovať',
    'add_new_item' => 'Pridať',
    'new_item_name' => 'Nový názov',
    'menu_name' => 'Kategórie',
    );
    register_taxonomy('Categories', array('service'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'query_var' => true,
    'rewrite' => array('slug' => 'categories')
    ));
}
add_action('init','create_taxonomy',0);

这里是post类型

https://pastebin.com/0eAPeBMr

下面的代码应该可以解决问题。

$args = array(
    'post_type' => 'post',
    'tax_query' => array(
        array(
            'taxonomy' => 'categories',
            'field' => 'slug', //can be set to ID
            'terms' => 'category-slug' //if field is ID you can reference by cat/term number
        )
    )
);
$query = new WP_Query( $args );

将“taxonomy”设置为您的类别分类法,并将 terms 更改为您的 category-slug。 如果您想按类别 ID 进行操作,请将 字段 值更改为 "term_id" 并在 terms 值中提供类别 ID。