How to rewrite slug of custom post type archive page

Pass the desired archive slug via has_archive:

$args = array(
    'rewrite'     => array( 'slug' => 'case-studies' ),
    'has_archive' => 'testimonials-case-studies',
);

Leave a Comment