У меня есть пользовательский тип записи с именем resources
:
register_post_type(
'resources',
tp_build_post_args(
'resources', 'Resource', 'Resources',
array(
'menu_icon' => 'dashicons-welcome-write-blog',
'menu_position' => 20,
'public' => true,
'supports' => array('editor', 'title','author','thumbnail', 'revisions'),
'taxonomies' => array('sector', 'subject', 'type'),
)
)
);
И таксономия с именем type
:
register_taxonomy(
'type',
'type',
array(
'hierarchical' => true,
'label' => 'Type',
'query_var' => true,
'rewrite' => array(
'slug' => 'type',
'with_front' => false
)
)
);
Тип может быть одним из следующих:
Я пытаюсь использовать wp_query
для отображения всех сообщений в resources
сtype
«Новости».Тем не менее, он возвращает сообщения все сообщения.
Где мой подход разваливается:
$card_count = 4;
$resource_type = 'News';
$args = array(
'post_type' => 'resources',
'post_status' => 'publish',
'posts_per_page' => $card_count,
//'cat' => $resource_type,
'tax_query' => array(
array(
'taxonomy' => 'type',
'terms' => $resource_type,
)
)
);