Skip to content

Instantly share code, notes, and snippets.

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