├── LICENSE ├── README.md ├── composer.json ├── extended-cpts.php ├── functions.php └── src ├── Args ├── PostType.php └── Taxonomy.php ├── ExtendedRewriteTesting.php ├── PostType.php ├── PostTypeAdmin.php ├── PostTypeRewriteTesting.php ├── Taxonomy.php ├── TaxonomyAdmin.php ├── TaxonomyRewriteTesting.php ├── Walker ├── Checkboxes.php ├── Dropdown.php └── Radios.php └── dashicons-codepoints.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/composer.json -------------------------------------------------------------------------------- /extended-cpts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/extended-cpts.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/functions.php -------------------------------------------------------------------------------- /src/Args/PostType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Args/PostType.php -------------------------------------------------------------------------------- /src/Args/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Args/Taxonomy.php -------------------------------------------------------------------------------- /src/ExtendedRewriteTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/ExtendedRewriteTesting.php -------------------------------------------------------------------------------- /src/PostType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/PostType.php -------------------------------------------------------------------------------- /src/PostTypeAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/PostTypeAdmin.php -------------------------------------------------------------------------------- /src/PostTypeRewriteTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/PostTypeRewriteTesting.php -------------------------------------------------------------------------------- /src/Taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Taxonomy.php -------------------------------------------------------------------------------- /src/TaxonomyAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/TaxonomyAdmin.php -------------------------------------------------------------------------------- /src/TaxonomyRewriteTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/TaxonomyRewriteTesting.php -------------------------------------------------------------------------------- /src/Walker/Checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Walker/Checkboxes.php -------------------------------------------------------------------------------- /src/Walker/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Walker/Dropdown.php -------------------------------------------------------------------------------- /src/Walker/Radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/Walker/Radios.php -------------------------------------------------------------------------------- /src/dashicons-codepoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbillion/extended-cpts/HEAD/src/dashicons-codepoints.json --------------------------------------------------------------------------------