Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 241 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 241 Bytes

wp-post-type

$builder = new HAMWORKS\WP\Post_Type\Builder( 'slug', 'name' );
$builder->set_options( 
    [
        'public'      => true,
        'description' => '',
        'has_archive' => true,
    ]
);
$builder->create();