Advertisement
hendrajeg

change series slug

Aug 11th, 2022
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function change_series_slug( $taxonomy, $object_type, $args ) {
  2.     if ( 'jnews-series' == $taxonomy ) {
  3.         remove_action( current_action(), __FUNCTION__ );
  4.         $args['rewrite'] = array( 'slug' => 'program' );
  5.         register_taxonomy( $taxonomy, $object_type, $args );
  6.     }
  7. }
  8. add_action( 'registered_taxonomy', 'change_series_slug', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement