Search code examples
phpjquerywordpresscdn

Remove jquery UI CDN from Wordpress Admin panel


I'm install wordpress on localhost for using offline works.

But I have a problem, on offline mode exist jquery ui cdn from http://code.jquery.com in admin panel (wp-admin).

that causes admin panel loading slowly and try to connect to jquery.com

enter image description here

I want to know, how to remove this CDN from admin panel ??

thanks.


Solution

  • Probably that stylesheet with CDN link was added by the theme or a plugin that you are using. You need to find it in the code, and replace the CDN link with the location of the local copy of it(hope you've already downloaded it).

    For that, you need to figure out exactly where that line is in the code. If its added by the theme, maybe look for the header.php file (if its hardcoded) or maybe look at the functions.php file. It might be added through the function wp_enqueue_style()

    Hope it helps!