WordPress 搜索文章自定义字段 search artilce postmeta

WordPress 插件开发中,有时需要检索文章对应的自定义字段postmeta,这里写一下相关的代码段

$searchArgs = array(     'post_type' => 'post',     'meta_query' = array(         'relation' => 'AND',         array( 'key' => 'srch_age',   'value' => $_REQUEST['srch_age'] ),         array( 'key' => 'srch_ptype', 'value' => $_REQUEST['srch_ptype'] )         // ... Add as many other criteria as you need     ) );  query_posts( $searchArgs ); while( have_posts() ): the_post(); ... endwhile;

官方文档:https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters

腾讯云限时秒杀【点击购买】

搬瓦工,CN2高速线路,1GB带宽,电信联通优化KVM,延迟低,速度快,建站稳定,搬瓦工BandwagonHost VPS优惠码BWH26FXH3HIQ,支持<支付宝> 【点击购买】!

Vultr$3.5日本节点,512M内存/500G流量/1G带宽,电信联通优化,延迟低,速度快【点击购买】!

阿里云香港、新加坡VPS/1核/1G/25G SSD/1T流量/30M带宽/年付¥288【点击购买】

WordPress 搜索文章自定义字段 search artilce postmeta

`微信`扫码 加好友

链接到文章: https://www.gkxyz.com/wordpress-sousuowenzhangzidingyiziduan-search-artilce-postmeta.html

推荐站点

评论已关闭