You’ll need to use a child theme and paste the following into the functions.php file. You can find this in Appearance > Editor.
Change the YOUR-NEW-NAME to whatever you like.
[php]
add_filter( ‘et_project_posttype_rewrite_args’, ‘wpc_projects_slug’, 10, 2 );
function wpc_projects_slug( $slug ) {
$slug = array( ‘slug’ => ‘YOUR-NEW-NAME’ );
return $slug;
}
[/php]
Hi,
this code doesn’t work for 4.8.1.
Any Updates?