├── VERSION ├── cache └── .gitignore ├── languages └── defer-wordpress.pot ├── public ├── lib │ └── .gitignore ├── css │ └── defer-wordpress-public.css ├── partials │ └── defer-wordpress-public-display.php ├── index.php ├── js │ └── defer-wordpress-public.js └── class-defer-wordpress-public.php ├── .docker ├── data │ └── .gitignore ├── wordpress │ └── .gitignore ├── .gitignore └── docker-compose.yml ├── .dist ├── .gitignore ├── blacklist.txt └── deploy.sh ├── admin ├── icon.jpg ├── donate.png ├── partials │ ├── update-note.php │ └── defer-wordpress-admin-display.php ├── js │ └── defer-wordpress-admin.js ├── index.php ├── css │ └── defer-wordpress-admin.css └── class-defer-wordpress-admin.php ├── .github └── FUNDING.yml ├── .editorconfig ├── .gitignore ├── index.php ├── package.json ├── includes ├── index.php ├── class-defer-wordpress-activator.php ├── class-defer-wordpress-i18n.php ├── class-defer-wordpress-deactivator.php ├── class-defer-wordpress-loader.php └── class-defer-wordpress.php ├── uninstall.php ├── composer.json ├── .php-cs-fixer.php ├── README.md ├── defer-wordpress.php ├── README.txt ├── LICENSE └── composer.lock /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /languages/defer-wordpress.pot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/lib/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.docker/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.docker/wordpress/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.docker/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !docker-compose.yml 4 | -------------------------------------------------------------------------------- /.dist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !VERSION 4 | !deploy.sh 5 | !blacklist.txt -------------------------------------------------------------------------------- /admin/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/defer-wordpress/HEAD/admin/icon.jpg -------------------------------------------------------------------------------- /admin/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinsenter/defer-wordpress/HEAD/admin/donate.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: shinsenter 2 | patreon: appseeds 3 | custom: ['https://www.paypal.me/shinsenter'] 4 | -------------------------------------------------------------------------------- /public/css/defer-wordpress-public.css: -------------------------------------------------------------------------------- 1 | /** 2 | * All of the CSS for your public-facing functionality should be 3 | * included in this file. 4 | */ -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 2 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /admin/partials/update-note.php: -------------------------------------------------------------------------------- 1 |
3 | 💡 Tip for defer.js:
4 | 💯 Feel free to leave all the options at their default settings. The plugin will take care of optimizing your website.
5 | View plugin settings here.
6 |