Update WordPress Search Permalink URL

PHOTO EMBED

Thu May 25 2023 06:56:04 GMT+0000 (Coordinated Universal Time)

Saved by @dawidofski

function fb_change_search_url_rewrite() {
	if ( is_search() && ! empty( $_GET['s'] ) ) {
		wp_redirect( home_url( "/search/" ) . urlencode( get_query_var( 's' ) ) );
		exit();
	}	
}
add_action( 'template_redirect', 'fb_change_search_url_rewrite' );
content_copyCOPY

https://managewp.com/blog/enhanced-performance-code-snippets