tonik / theme

Tonik is a WordPress Starter Theme which aims to modernize, organize and enhance some aspects of WordPress theme development.
http://labs.tonik.pl/theme/
MIT License
1.33k stars 140 forks source link

Enqueueing scripts from CDN #28

Closed msacchetti closed 7 years ago

msacchetti commented 7 years ago

How can i register/enqueue scripts from a CDN?

When i try this below, i get: " Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 262144 bytes) in ../wp-includes/class.wp-dependencies.php on line 344

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 262144 bytes) in Unknown on line 0"

wp_register_script( 'scrollbar', 'https://cdn.jsdelivr.net/jquery.mcustomscrollbar/3.0.6/jquery.mCustomScrollbar.concat.min.js', null, null, true );
wp_enqueue_script('scrollbar');
msacchetti commented 7 years ago

Nevermind, my mistake