WordPress 插件开发 如何一次性输入多个标签Tags搜索文章内容?

WordPress插件开发中,如何实现在前端页面如何同时搜索多个标签? 类似:?tag=tag1+tag2 下…

WordPress插件开发中,如何实现在前端页面如何同时搜索多个标签?

类似:?tag=tag1+tag2

下面我们给出代码示例:

<?php
/** posts with any of the following tags */   
$query = new WP_Query( 'tag=bread,baking' );

/** posts with all of the following tags */
$query = new WP_Query( 'tag=bread+baking+recipe' );

/** or alternatively */
$query = new WP_Query( array( 'tag_slug__in' => array( 'bread', 'baking' ) ) );
类别:WordPress教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册