37756-vm/wp-content/mu-plugins/portfolio-cpt.php
Flatlogic Bot fdd0c203f1 f44
2026-01-23 16:53:20 +00:00

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'],
]);
});