Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. add_action( 'init', 'sportflash_rewrites_init' );
  2. function sportflash_rewrites_init(){
  3.    
  4.     add_rewrite_rule(
  5.         '([^/]*)/([^/]*)/([^/]*)/([^/]*)/page/([^/]*)?',
  6.         'index.php?category_name=$matches[1]&sport=$matches[2]&sex=$matches[3]&age=$matches[4]&paged=$matches[5]',
  7.         'top'
  8.     );
  9.    
  10.     add_rewrite_rule(
  11.         '([^/]*)/([^/]*)/([^/]*)/([^/]*)/?',
  12.         'index.php?category_name=$matches[1]&sport=$matches[2]&sex=$matches[3]&age=$matches[4]',
  13.         'top'
  14.     );
  15.    
  16.     add_rewrite_rule(
  17.         '([^/][^klubovi]*)/([^/]*)/?',
  18.         'index.php?category_name=$matches[1]&sport=$matches[2]',
  19.         'top'
  20.     );
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement