// AWK - Rename Divi CPT "Project" to "Testimonials"
function awk_rename_projects_cpt() {
register_post_type( 'project', array(
'labels' => array(
'name' => __( 'Testimonials', 'divi' ),
'singular_name' => __( 'Testimonial', 'divi' ),
),
'has_archive' => true,
'hierarchical' => true,
'public' => true,
'rewrite' => array( 'slug' => 'testimonial', 'with_front' => false ),
'menu_icon' => 'dashicons-tag',
'supports' => array(),
) );
}
add_action( 'init', 'awk_rename_projects_cpt' );