32 lines
847 B
PHP
32 lines
847 B
PHP
<?php
|
|
/*
|
|
Plugin Name: Portfolio CPT
|
|
Description: Registers Projects Custom Post Type
|
|
Version: 1.0
|
|
*/
|
|
|
|
add_action('init', function() {
|
|
register_post_type('project', [
|
|
'labels' => [
|
|
'name' => 'Projects',
|
|
'singular_name' => 'Project',
|
|
],
|
|
'public' => true,
|
|
'has_archive' => true,
|
|
'rewrite' => ['slug' => 'projects'],
|
|
'supports' => ['title', 'editor', 'thumbnail', 'excerpt'],
|
|
'show_in_rest' => true,
|
|
'menu_icon' => 'dashicons-portfolio',
|
|
]);
|
|
|
|
register_taxonomy('project_category', 'project', [
|
|
'labels' => [
|
|
'name' => 'Project Categories',
|
|
'singular_name' => 'Project Category',
|
|
],
|
|
'hierarchical' => true,
|
|
'show_in_rest' => true,
|
|
'rewrite' => ['slug' => 'project-category'],
|
|
]);
|
|
});
|