├── events ├── meta.php ├── post-types.php ├── readme.md └── taxonomies.php ├── portfolio ├── meta.php ├── post-types.php ├── readme.md └── taxonomies.php ├── readme.md └── testimonials ├── meta.php ├── post-types.php ├── readme.md └── taxonomies.php /events/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/events/meta.php -------------------------------------------------------------------------------- /events/post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/events/post-types.php -------------------------------------------------------------------------------- /events/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/events/readme.md -------------------------------------------------------------------------------- /events/taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/events/taxonomies.php -------------------------------------------------------------------------------- /portfolio/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/portfolio/meta.php -------------------------------------------------------------------------------- /portfolio/post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/portfolio/post-types.php -------------------------------------------------------------------------------- /portfolio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/portfolio/readme.md -------------------------------------------------------------------------------- /portfolio/taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/portfolio/taxonomies.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/readme.md -------------------------------------------------------------------------------- /testimonials/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/testimonials/meta.php -------------------------------------------------------------------------------- /testimonials/post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/testimonials/post-types.php -------------------------------------------------------------------------------- /testimonials/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/testimonials/readme.md -------------------------------------------------------------------------------- /testimonials/taxonomies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justintadlock/content-type-standards/HEAD/testimonials/taxonomies.php --------------------------------------------------------------------------------