我能够从开发人员那里收到解决方案。将以下代码添加到函数中。然后重建Relvanssi索引。这对我有用。
function rlv_index_post_date( $content, $post ) {
$date = get_the_time( "F Y", $post->ID );
$content .= " $date";
return $content;
}
add_filter( \'relevanssi_content_to_index\', \'rlv_index_post_date\', 10, 2 );