├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── languages └── acf-taxonomy-field.pot ├── readme.txt ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── taxonomy-field.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .svn 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/README.md -------------------------------------------------------------------------------- /languages/acf-taxonomy-field.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/languages/acf-taxonomy-field.pot -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/screenshot-3.png -------------------------------------------------------------------------------- /taxonomy-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GCX/acf-taxonomy-field/HEAD/taxonomy-field.php --------------------------------------------------------------------------------