add_filter( 'services_args','_my_rewrite_slug' ); // here replace "your-post-type" with the actual post type,e.g.,"cherry_services","cherry-projects" function _my_rewrite_slug( $args ){$args['rewrite']['slug'] = 'servizi';// Replace "our-services" with your preferable slug return $args}