Guest User

Untitled

a guest
Oct 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. function add_listing_page_rewrites()
  4. {
  5. global $wp_rewrite;
  6.  
  7. add_rewrite_endpoint('articles', EP_PERMALINK);
  8. add_rewrite_rule('^(.+)/articles', 'index.php?category_name=$matches[1]&articles_list=1', 'top');
  9.  
  10. flush_rewrite_rules();
  11.  
  12. }
  13.  
  14. add_action('init', 'add_listing_page_rewrites');
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment