外贸建站资讯分享

wordpress搜索结果无法出现自定义字段内容(完美解决)

阅读数:2109 时间:01/05/2022 来源:技术分享全部动态 标签:

您所在的位置:

第一步:链接查询

也就是修改搜索查询的sql代码,将postmeta表左链接进去。

/**
* Join posts and postmeta tables
*
* http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_join
*/
function cf_search_join( $join ) {
global $wpdb;
if ( is_search() ) {
$join .=’ LEFT JOIN ‘.$wpdb->postmeta. ‘ ON ‘. $wpdb->posts . ‘.ID = ‘ . $wpdb->postmeta . ‘.post_id ‘;
}
return $join;
}
add_filter(‘posts_join’, ‘cf_search_join’ );

 

第二步:查询代码

/**
* Modify the search query with posts_where
*
* http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_where
*/
function cf_search_where( $where ) {
global $pagenow, $wpdb;
if ( is_search() ) {
$where = preg_replace(
“/\(\s*”.$wpdb->posts.”.post_title\s+LIKE\s*(\'[^\’]+\’)\s*\)/”,
“(“.$wpdb->posts.”.post_title LIKE $1) OR (“.$wpdb->postmeta.”.meta_value LIKE $1)”, $where );
}
return $where;
}
add_filter( ‘posts_where’, ‘cf_search_where’ );

 

第三步:去重

/**
* Prevent duplicates
*
* http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_distinct
*/
function cf_search_distinct( $where ) {
global $wpdb;
if ( is_search() ) {
return “DISTINCT”;
}
return $where;
}
add_filter( ‘posts_distinct’, ‘cf_search_distinct’ );


关注我们
TOP
关闭

网站需求

    您的公司*

    您的姓名*

    您的手机*

    您的需求