Skip to content

Instantly share code, notes, and snippets.

@apsolut
Created September 22, 2023 10:33
Show Gist options
  • Save apsolut/b504ac95f701db4a29640a1591c832ce to your computer and use it in GitHub Desktop.
Save apsolut/b504ac95f701db4a29640a1591c832ce to your computer and use it in GitHub Desktop.
remove global front base of archive for your Custom Post Types
add_filter( 'register_post_type_args', function( $args, $post_type )
{
if( ('industries' === $post_type || 'success-stories' === $post_type || 'integrations-product' === $post_type ) && is_array( $args ) ) {
$args['rewrite']['with_front'] = false;
}
return $args;
}, 99, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment