WordPress URL用于按类别和标记显示帖子

时间:2017-04-26 06:54:41

标签: php wordpress url tags categories

如何使用网址显示具有特定类别 foo 和特定标记 bar 的所有帖子?

Example: site.com/category/foo/tag/bar

Example: site.com/posts?category={category-id}&tag={tag-id}

2 个答案:

答案 0 :(得分:1)

结构看起来像这样,但取决于您的永久链接结构。

/category/category-name/?tag=tag-name

答案 1 :(得分:0)

我不知道这是否有默认功能,但我知道如何实现它。

  

您可以为此创建自定义模板,并在该模板中获取   按get_query_var()查询字符串,然后使用WP_Query   cattag参数用于获取属于您的帖子   那只猫/标签。

以下是一个示例工作代码:

$cat_id = get_query_var('category');
$tag_id = get_query_var('tag');
$args = [
    //...
    //...
    'post_type' => 'post', //<-- Replace it with your custom post_type
    'post_status' => 'publish',
    'tag_id' => $tag_id, //replace tag_id with tag if you are passing tag slug
    'cat ' => $cat_id //replace cat with category_name if your are passing category slug
    //...
    //...
];

// The Query
$query = new WP_Query($args);
if (!empty($query->posts))
{
    //print_r($query->posts);
    foreach ($query->posts as $post)
    {
        //Your filtered post
    }
}

希望这有帮助!