Example #1
0
 public static function register_archive_fields()
 {
     $main_component = new VACComponent(array('id' => str_replace('-', '_', static::$post_type) . '_archive', 'location' => array('page_template', static::$archive_template), 'position' => 'normal', 'post_type' => static::$post_type, 'name' => static::$post_name), array('single' => array('type' => 'group', 'fields' => array('text', 'featured_posts', 'archive'))));
     $main_component->add_featured_post_excerpt();
     $main_component->register();
 }