使用wp_query()函数来搜索

如果使用wp_query()函数来搜索,参数设置如下:

<?php
//查询参数
$args = array(
'post_type' => 'post',
's' => 'Quote'  //hs默认会查询'标题','摘要','内容'里面含有“Quote”的数据。
);
//真正查询
$my_query = new WP_Query(  $args );
?>
//可调用测试如下:
<?php if( $my_query->have_posts() ): ?>
<?php while( $my_query->have_posts() ) : $my_query->the_post(); ?>
<h3><?php the_title(); ?></h3>
<?php endwhile(); ?>
<?php endif; ?>
/* 搜索 */
备注:这个查询是查询数据库里面的数据,如果查询参数为英文'img',则会查询出含图片标签的文章,因为源码中含有html标签为'<img>'。

给TA打赏
共{{data.count}}人
人已打赏
wordpress教程

wordpress禁用自动更新的方法

2021-11-30 10:17:51

wordpress教程

wordpress根据内容类型的条件判断来获取相应的内容

2022-1-15 10:21:59

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索