如果使用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>'。