wordpress custom search page pagination returns 404
You should use pre_get_post action to alter the search query. It is much better approach and you will avoid unnecesary queries (actually, with your code, WordPress already performed the database query for the current request but you discard it and perform a new database query). add_action( ‘pre_get_posts’, ‘custom_search_query’ ); function custom_search_query( $query ) { // … Read more