public function __construct()
 {
     $this->postType = 'feature';
     $this->singularName = 'Feature';
     $this->pluralName = 'Features';
     $this->menuName = 'Feature';
     $this->slug = 'feature';
     $this->args = array('supports' => array('title', 'editor', 'thumbnail'));
     $this->meta_fields = array('feature_icon' => array('type' => 'select', 'name' => 'feature_icon', 'title' => 'Feature\'s icon', 'value' => 'icon-book-open', 'choices' => Util::getElegantIconList()));
 }