Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dgoze/d49506b0838f40da434ae647ff572e25 to your computer and use it in GitHub Desktop.
Save dgoze/d49506b0838f40da434ae647ff572e25 to your computer and use it in GitHub Desktop.
Post type archieve edit permalink
<?php
add_filter( 'post_type_archive_link', 'fix_post_type_archive_link', 10, 2 );
function fix_post_type_archive_link( $link, $post_type ) {
if($post_type == 'scripts'){
$link = str_replace('/%some-slug%', '', $link);
}
return $link;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment