• Resolved jpllopes

    (@jpllopes)


    Is it possible to redirect / change search page not found (no results), redirect to page 404 error?

Viewing 1 replies (of 1 total)
  • Hello,

    Can you try adding the following snippet to your child theme’s functions.php file:

    add_action( 'template_redirect', function () {
    	if ( ! empty( $_GET['dgwt_wcas'] ) ) {
        
    		global $wp_query;
    
    		if ( empty( $wp_query->found_posts ) ) {
    			wp_redirect(home_url('your-404-page')); // Redirect URL
    			exit();
    		}
    
    	}
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Redirect / change search page not found (no results),’ is closed to new replies.