Advertisement
miriamdepaula

WordPress: Custom Permalink para busca

Oct 6th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.  
  3. jQuery(document).ready( function($){
  4.  
  5.     $("#searchform").live('submit',function(){
  6.  
  7.         location.href='<?php bloginfo('home')?>/search/' + encodeURIComponent($("#s").val()).replace(/%20/g, '+'); return false;      
  8.  
  9.     });
  10. });
  11. </script>
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement