我目前正在开发一个在wordpress中实现的项目。我希望能够使用标签搜索自定义帖子。
我试过了:
$query = new WP_Query( 'tag=' . $tag );
但没有回复任何帖子。
由于
答案 0 :(得分:0)
尝试这样的事情
<?php
$args=array(
'tag__in' => array(87),//replace with your tag id
'post_type' => 'custom'//replace with your custom post type
);
query_posts($args));
?>
答案 1 :(得分:0)
如果是自定义帖子类型,则必须添加post_type
参数
$args = array( 'post_type' => 'your_custom_post_typy', 'tag' => $tag );
$query = new WP_Query( $args );
另外请确保您已使用'taxonomies'=>array('post_tag')
中的register_post_type
。