Advertisement
wpmupredrag

Untitled

Aug 17th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_action( 'wp_footer', 'change_element_url' );
  2. function change_element_url() { ?>
  3.     <script type="text/javascript">
  4.         ;(function ($) {
  5.         $(function () {
  6.             $("a[href]").each(function () {
  7.                 $(this).attr("href", $(this).attr("href").replace(/\/category\/news\//, '/news/'));
  8.             });
  9.         });
  10.         })(jQuery);
  11.     </script>
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement