├── .all-contributorsrc ├── .env.testing ├── .env.testing.tric ├── .github ├── FUNDING.yml └── workflows │ └── tests-php.yml ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── _entry ├── admin-settings.js ├── admin.js └── frontend.js ├── cliff-wp-plugin-boilerplate.php ├── codeception.dist.yml ├── codeception.tric.yml ├── composer.json ├── composer.lock ├── index.php ├── languages └── cliff-wp-plugin-boilerplate.pot ├── license.txt ├── package.json ├── postcss.config.js ├── readme.txt ├── src ├── Admin │ ├── Assets.php │ ├── Settings │ │ ├── Main.php │ │ ├── js │ │ │ ├── Footer.jsx │ │ │ ├── Header.jsx │ │ │ ├── Main.jsx │ │ │ └── index.jsx │ │ └── pcss │ │ │ ├── react-notifications.pcss │ │ │ ├── style.pcss │ │ │ └── wordpress.pcss │ ├── images │ │ └── fake-logo.png │ ├── index.php │ ├── js │ │ └── index.js │ └── pcss │ │ └── style.pcss ├── Bootstrap.php ├── Common │ ├── Assets.php │ ├── Common.php │ ├── Settings │ │ ├── Choices.php │ │ ├── Customizer.php │ │ └── Main.php │ ├── Utilities │ │ ├── Arrays.php │ │ ├── Debug.php │ │ ├── Http.php │ │ ├── Links.php │ │ ├── Numbers.php │ │ ├── Posts.php │ │ ├── Strings.php │ │ └── Timing.php │ ├── index.php │ ├── js │ │ └── index.js │ └── pcss │ │ └── style.pcss ├── Core │ ├── Activator.php │ ├── Deactivator.php │ ├── I18n.php │ ├── Init.php │ ├── Loader.php │ └── index.php ├── Customizer │ ├── Controls │ │ └── SortableCheckboxes │ │ │ ├── Control.php │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── index.php │ │ │ └── js │ │ │ └── script.js │ ├── Customizer.php │ └── index.php ├── Frontend │ ├── Assets.php │ ├── index.php │ ├── js │ │ └── index.js │ └── pcss │ │ └── style.pcss ├── PluginData.php ├── Shortcodes │ ├── Manage.php │ ├── Shortcode.php │ └── TK_Request.php └── index.php ├── tests ├── _data │ ├── .gitkeep │ └── remap │ │ └── post_meta │ │ └── demo.json ├── _output │ └── .gitignore ├── _support │ ├── AcceptanceTester.php │ ├── Factories │ │ ├── Post │ │ │ └── CreateNew.php │ │ └── RemapPostMeta.php │ ├── FunctionalTester.php │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Functional.php │ │ ├── Unit.php │ │ └── Wpunit.php │ ├── UnitTester.php │ ├── WpunitTester.php │ └── _generated │ │ └── .gitignore ├── _zips │ ├── .gitkeep │ └── github-updater-9.9.4.zip ├── acceptance.suite.dist.yml ├── functional.suite.dist.yml ├── tests.md ├── unit.suite.dist.yml ├── unit │ └── ExampleTest.php ├── wpunit.suite.dist.yml └── wpunit │ └── WpPluginName │ └── Common │ └── Utilities │ ├── ArraysTest.php │ ├── HttpTest.php │ ├── LinksTest.php │ ├── NumbersTest.php │ ├── PostsTest.php │ ├── StringsTest.php │ └── TimingTest.php └── uninstall.php /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env.testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.env.testing -------------------------------------------------------------------------------- /.env.testing.tric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.env.testing.tric -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/tests-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.github/workflows/tests-php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.15.3 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /_entry/admin-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/_entry/admin-settings.js -------------------------------------------------------------------------------- /_entry/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/_entry/admin.js -------------------------------------------------------------------------------- /_entry/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/_entry/frontend.js -------------------------------------------------------------------------------- /cliff-wp-plugin-boilerplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/cliff-wp-plugin-boilerplate.php -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/codeception.dist.yml -------------------------------------------------------------------------------- /codeception.tric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/codeception.tric.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordp/cliff-wp-plugin-boilerplate/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |