function create_trustee_post_type() {
register_post_type(‘trustee’,
array(
‘labels’ => array(
‘name’ => (‘Trustees’), ‘singular_name’ => (‘Trustee’),
),
‘public’ => true,
‘supports’ => array(‘title’, ‘editor’, ‘thumbnail’),
‘menu_icon’ => ‘dashicons-groups’,
)
);
}
add_action(‘init’, ‘create_trustee_post_type’);

Leave a Reply

Your email address will not be published. Required fields are marked *