Advertisement
meetsos

Rename/Change Slug of a Plugin's Custom Post Type

Jun 20th, 2022
1,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. // Change "portfolio" slug of "Portfolio" custom post type to "about"
  2. function change_portfolio_post_types_slug( $args, $post_type ) {
  3.  
  4.    /*item post type slug*/  
  5.    if ( 'portfolio' === $post_type ) {
  6.       $args['rewrite']['slug'] = 'about';
  7.    }
  8.  
  9.    return $args;
  10. }
  11. add_filter( 'register_post_type_args', 'change_portfolio_post_types_slug', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement