As TrueUI, we are honored to have collaborated with Sigma International Construction, a prominent construction company with an extensive track record in both Iraq and the USA. Sigma International Construction specializes in architectural, structural, electrical, mechanical, plumbing, site work, and data processing solutions, demonstrating an unwavering commitment to delivering high-quality, tailored services to their clients. With their experienced team of civil engineers, architects, and site superintendents, Sigma International Construction continues to push the boundaries of excellence in the industry.
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');