是否使用高级自定义字段?(ACF?)。
Relevanssi是一个非常好的插件,它增加了核心WordPress搜索的范围。
以下是链接:https://wordpress.org/plugins/relevanssi/
它允许用户通过附加到其上的ACF字段搜索帖子。
安装插件后,可以在函数中使用以下代码。php文件,用于指示搜索显示与元值匹配的帖子。
function rlv_relationship_content( $content, $post ) {
// Fetching the post data by the relationship field.
$relationships = get_post_meta( $post->ID, \'_cth_featured_zip_code_1\', true );
if ( ! is_array( $relationships ) ) {
$relationships = array( $relationships );
}
foreach ( $relationships as $related_post ) {
$content .= \' \' . get_the_title( $related_post );
}
return $content;
}
add_filter( \'relevanssi_content_to_index\', \'rlv_relationship_content\', 10, 2 );