Skip to content

Instantly share code, notes, and snippets.

@vovadocent
Created December 16, 2016 10:46
Show Gist options
  • Save vovadocent/f6ede2b0bce8bf7a40cbf82f7f12c769 to your computer and use it in GitHub Desktop.
Save vovadocent/f6ede2b0bce8bf7a40cbf82f7f12c769 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