WordPress按标签查询搜索

时间:2013-12-02 09:23:34

标签: wordpress

我目前正在开发一个在wordpress中实现的项目。我希望能够使用标签搜索自定义帖子。

我试过了:

$query = new WP_Query( 'tag=' . $tag );

但没有回复任何帖子。

由于

2 个答案:

答案 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

相关问题