├── .gitignore ├── README.md ├── acf-post-type-selector.php ├── composer.json ├── cpt_field.php ├── css └── input.css ├── js └── input.js ├── post-type-selector-v4.php └── post-type-selector-v5.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/README.md -------------------------------------------------------------------------------- /acf-post-type-selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/acf-post-type-selector.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/composer.json -------------------------------------------------------------------------------- /cpt_field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/cpt_field.php -------------------------------------------------------------------------------- /css/input.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/js/input.js -------------------------------------------------------------------------------- /post-type-selector-v4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/post-type-selector-v4.php -------------------------------------------------------------------------------- /post-type-selector-v5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimPerry/acf-post-type-selector/HEAD/post-type-selector-v5.php --------------------------------------------------------------------------------