pusatdata

Cara Mengganti huruf s pada search wordpress

May 27th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Paste kode berikut di theme functions.php:
  2.  
  3. function wpb_change_search_url() {
  4. if ( is_search() && ! empty( $_GET['s'] ) ) {
  5. wp_redirect( home_url( "/search/" ) . urlencode( get_query_var( 's' ) ) );
  6. exit();
  7. }
  8. }
  9. add_action( 'template_redirect', 'wpb_change_search_url' );
Add Comment
Please, Sign In to add comment