Skip to content

Instantly share code, notes, and snippets.

@hauge75
Created July 18, 2016 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hauge75/5110f32185eb2cdf816e4ce514a91221 to your computer and use it in GitHub Desktop.
Save hauge75/5110f32185eb2cdf816e4ce514a91221 to your computer and use it in GitHub Desktop.
Rename slug for existing custom post type in childtheme - Wordpress
//* change slug for post type
$args = get_post_type_object("post_type_name");
$args->rewrite["slug"] = "new_slug";
register_post_type($args->name, $args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment