Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created September 28, 2017 12:40
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 Shininglow/b23118fbd98a7fc8274089fd76f57bde to your computer and use it in GitHub Desktop.
Save Shininglow/b23118fbd98a7fc8274089fd76f57bde to your computer and use it in GitHub Desktop.
add_filter( 'cherry_team_post_type_args', '_my_rewrite_slug' );
function _my_rewrite_slug( $args ) {
$args['rewrite']['slug'] = 'our-team';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment