TrueUI is honored to have collaborated with a distinguished organization dedicated to supporting fatherhood, a key pillar in the structure of families and communities. This organization, associated with a renowned university, is a beacon of resources and services designed to uplift fathers and fortify their roles within families.
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');