开发者 |
audioscavenger
mindshare geetjacobs patkirts |
---|---|
更新时间 | 2019年5月13日 00:24 |
PHP版本: | 5.1 及以上 |
WordPress版本: | 5.2 |
版权: | GPLv3 or later |
版权网址: | 版权信息 |
Yes! Every WP CDNjs Reborn's features are and always will be free.
Since WP CDNjs Reborn 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 clone the WP CDNjs Reborn Git and pull requests from here.
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; }