Guest User

Untitled

a guest
Mar 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function url_fix( $string ) {
  2. $string = str_replace( home_url(), network_home_url(), $string );
  3. return $string;
  4. }
  5. add_filter( 'template_directory_uri', 'url_fix', 10, 3 );
  6. add_filter( 'stylesheet_uri', 'url_fix', 10, 3 );
  7. add_filter( 'stylesheet_directory_uri', 'url_fix', 10, 3 );
  8. add_filter( 'stylesheet_directory', 'url_fix', 10, 3 );
  9. add_filter( 'plugins_url', 'url_fix', 10, 3 );
  10. add_filter( 'plugin_url', 'url_fix', 10, 3 );
Add Comment
Please, Sign In to add comment