Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. add_filter('rewrite_rules_array', 'mmp_rewrite_rules');
  3. function mmp_rewrite_rules($rules) {
  4. $newRules = array();
  5.  
  6. $newRules['portfolio/strona/([0-9]+)/?$'] = 'index.php?post_type=portfolio_biura&strona=$matches[1]';
  7. $newRules['portfolio/(.+)/page/([0-9]+)/?$'] = 'index.php?post_type=portfolio_biura&kategorie=$matches[1]&strona=$matches[2]';
  8. $newRules['portfolio/(.+)/(.+)/?$'] = 'index.php?portfolio_biura=$matches[2]';
  9.  
  10. return array_merge($newRules, $rules);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement