WordPressカスタム投稿タイプの検索結果を繰り返しさせない

function.phpに以下コピペ

//検索結果の繰り返しさせない
function remove_posts_filter($wp_query) {
	if(!$wp_query->is_main_query() && isset($_REQUEST['cftsearch_submit']) ) :
		if ( !empty($_REQUEST['limit']) )
			remove_all_filters( 'post_limits' );
		remove_all_filters( 'posts_join' ) ;
		remove_all_filters( 'posts_where' ) ;
		remove_all_filters( 'posts_orderby' ) ;
	endif;
}
add_action( 'pre_get_posts', 'remove_posts_filter' );