/ilab-backend

ILab's Backend Factory by Kernspaltung

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

backend-factory

Wordpress Plugin

###by kernspaltung

##Backend Configuration tool for WP Developers

  • Simple Custom Post Type Creation API
  • Automatic Fields and Metaboxes
  • Custom Post Type Relationships
// Custom Post Type registration:

$cpt = array(
   'post_type' => 'thing',
   'singular' => "Thing",
   'plural' => "Things"
);

$backendFactory -> add_cpt( $cpt );

$backendFactory -> register_cpts();