At TrueUI, we are privileged to have partnered with a globally recognized health organization, associated with a major university. This organization is a trailblazer in global health, with a remarkable track record of initiatives that have made significant impacts worldwide. Their work spans across various aspects of health, demonstrating an unwavering commitment to improving lives and fostering healthier communities.
function register_project_post_type() {
$labels = array(
'name' => __('Projects'),
'singular_name' => __('Project'),
'add_new_item' => __('Add New Project'),
);
$args = array(
'labels' => $labels,
'public' => true,
'has_archive' => false,
);
register_post_type('project', $args);
}
add_action('init', 'register_project_post_type');