| Developer |
mindshare
geetjacobs patkirts audioscavenger |
|---|---|
| Update Time | March 20, 2020, 12:48 p.m. |
| Donation URL: | donation |
| PHP Version: | 5.1 + |
| WordPress Version: | 5.3 |
| Copyright: | GPLv3 or later |
| Copyright URL: | Copyright Information |
Yes! Every WP cdnjs's features are and always will be free.
Since WP cdnjs do not provided hosted services by WordPress.com, a WordPress.com account is not required.
There are opportunities for developers at all levels to contribute. You can participate to the development via the developer section with SVN.
You can override the default action ('init') that enqueues the CDNJS script like so:
add_filter('wp_cdnjs_init_action', 'my_cdnjs_init_action'); function my_cdnjs_init_action() { return 'get_sidebar'; // the action tag you wish to use }
Yes. You can use this filter:
add_filter('wp_cdnjs_allow_in_admin', 'my_cdnjs_allow_in_admin'); function my_cdnjs_allow_in_admin() { return TRUE; }