开发者 |
mindshare
geetjacobs patkirts audioscavenger |
---|---|
更新时间 | 2020年3月20日 12:48 |
捐献地址: | 去捐款 |
PHP版本: | 5.1 及以上 |
WordPress版本: | 5.3 |
版权: | GPLv3 or later |
版权网址: | 版权信息 |
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; }