Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. /**
  2. **================================================================================================================**
  3. * Rewrite Root Rules
  4. **================================================================================================================**
  5. **================================================================================================================**
  6. **/
  7. add_action('generate_rewrite_rules', 'roots_add_rewrites');
  8. function roots_add_rewrites($content) {
  9. $theme_name = next(explode('/themes/', get_stylesheet_directory()));
  10. global $wp_rewrite;
  11. $roots_new_non_wp_rules = array(
  12. // '(img|js|css|fonts)/(.*)' => 'wp-content/themes/'. $theme_name . '/$1/$2',
  13. '(?:\/)?[a-zA-Z\d\/]*?\/?(img|js|css|fonts)\/(.*)' => 'wp-content/themes/'. $theme_name . '/$1/$2'
  14. );
  15. $wp_rewrite->non_wp_rules += $roots_new_non_wp_rules;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement