Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. http://domain/support/search/?s=yes&post_type=help
  2.  
  3. RewriteRule ^port/?$ index.php [QSA,L]
  4.  
  5. BuddyPress
  6. Clone Posts
  7. Contact Form 7
  8. Easy Bootstrap Shortcode
  9. Easy Pricing Tables Lite by Fatcat Apps
  10. HubSpot for WordPress
  11. jQuery Smooth Scroll
  12. Module Manager
  13. Simple Share Buttons Adder
  14. Types - Complete Solution for Custom Fields and Types
  15. WooCommerce
  16. WordPress Importer
  17. WordPress SEO
  18. WP Migrate DB
  19. WP Views
  20.  
  21. function rm_search_rule(){
  22. add_rewrite_rule('^support/search/', 'index.php', 'top');
  23. }
  24. add_action( 'init', 'rm_search_rule' );
  25.  
  26. function rm_search_rule(){
  27. add_rewrite_rule('^support/search/([^/]+)', 'index.php?s=$matches[0]', 'top');
  28. }
  29. add_action( 'init', 'rm_search_rule' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement