├── .github └── workflows │ ├── wp-release-on-tag.yml │ └── wp-sync-assets.yml ├── .travis.yml ├── .wordpress-org ├── banner-772x250.jpg ├── icon-128x128.png └── icon-256x256.png ├── LICENSE ├── README.md ├── composer.json ├── custom-bulk-actions.php ├── phpunit.xml ├── readme.txt └── tests ├── bootstrap.php └── test-plugin.php /.github/workflows/wp-release-on-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.github/workflows/wp-release-on-tag.yml -------------------------------------------------------------------------------- /.github/workflows/wp-sync-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.github/workflows/wp-sync-assets.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.travis.yml -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.wordpress-org/banner-772x250.jpg -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/composer.json -------------------------------------------------------------------------------- /custom-bulk-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/custom-bulk-actions.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seravo/wp-custom-bulk-actions/HEAD/tests/test-plugin.php --------------------------------------------------------------------------------