Beispiel #1
0
 /**
  * It creates the Staff post type
  */
 public function createStaffPostType()
 {
     PostHelper::createPostType(self::STAFF_POST_TYPE, self::STAFF_SINGULAR, self::STAFF_PLURAL);
 }
Beispiel #2
0
 /**
  * It creates the Job post type
  */
 public function createJobPostType()
 {
     PostHelper::createPostType(self::JOB_POST_TYPE, self::JOB_SINGULAR, self::JOB_PLURAL);
 }
 /**
  * It creates the Staff post type
  */
 public function createDirectorPostType()
 {
     PostHelper::createPostType(self::DIRECTOR_POST_TYPE, self::DIRECTOR_SINGULAR, self::DIRECTOR_PLURAL);
 }
 /**
  * It creates the Staff post type
  */
 public function createSponsorPostType()
 {
     PostHelper::createPostType(self::POST_TYPE, self::SINGULAR, self::PLURAL);
 }
 /**
  * It creates the Job post type
  */
 public function createResourcePostType()
 {
     PostHelper::createPostType(self::POST_TYPE, self::POST_SINGULAR, self::POST_PLURAL);
 }
Beispiel #6
0
 /**
  * It creates the Staff post type
  */
 public function createHomePostType()
 {
     PostHelper::createPostType(self::HOME_POST_TYPE, self::HOME_SINGULAR, self::HOME_PLURAL);
 }