I tried to edit as follows but it doesn’t work (The result:THAT LINKS IS BROKEN):
function activland_change_post_types_slug( $args, $post_type ) {
/*item post type slug*/
if ( ‘accommodation’ === $post_type ) {
$args[‘rewrite’][‘slug’] = ‘dove-dormire’;
}elseif(‘activland_activities’ === $post_type){
$args[‘rewrite’][‘slug’] = ‘attivita’;
}elseif(‘activland_whatwedo’ === $post_type){
$args[‘rewrite’][‘slug’] = ‘cosa-facciamo’;
}
return $args;
}
add_filter( ‘register_post_type_args’, ‘activland_change_post_types_slug’, 10, 2 );