├── CHANGELOG.md ├── index.php ├── .gitignore ├── src ├── custom │ └── custom-post-type.php └── support │ └── autoloader.php ├── LICENSE.md ├── README.md └── plugin-bootstrap.php /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | Initial release. -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | __( 'Team Bios', 'teambios' ), 25 | 'public' => true, 26 | ); 27 | 28 | register_post_type( 'team-bios', $args ); 29 | } 30 | -------------------------------------------------------------------------------- /src/support/autoloader.php: -------------------------------------------------------------------------------- 1 |