Skip to content

Instantly share code, notes, and snippets.

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