Changing the custom post type “Projects” name and slug (URL) is easiest when your site is created on OPTe.io:
Steps: (OPTe.io)
Activate plugin “My Custom Functions”
Insert code below and change “Artist(s)” to whatever you like.
Goto Settings>Permalinks and hit the save button.
// RENAME PROJECT CUSTOM POST TYPE DIVI THEME
function rename_project_cpt() {
register_post_type( 'project',
array(
'labels' => array(
'name' => __( 'Artists', 'divi' ), // change the text Projects to anything you like
'singular_name' => __( 'Artist', 'divi' ), // change the text Project to anything you like
),
'has_archive' => true,
'hierarchical' => true,
'menu_icon' => 'dashicons-images-alt2', // you choose your own dashicon
'public' => true,
'rewrite' => array( 'slug' => 'artist', 'with_front' => false ), // change the text portfolio to anything you like
'supports' => array(),
));
}
add_action( 'init', 'rename_project_cpt' );