Skip to content

Instantly share code, notes, and snippets.

@ejangi
Created July 9, 2018 23:53
Show Gist options
  • Save ejangi/eb1b05d093a3089885ac96b6efb10c4b to your computer and use it in GitHub Desktop.
Save ejangi/eb1b05d093a3089885ac96b6efb10c4b to your computer and use it in GitHub Desktop.
<?php
add_filter( 'register_post_type_args', function ( $args, $post_type ){
if ($post_type == 'my-post-type-slug'){
$args['rewrite']['slug'] = 'short';
}
return $args;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment