Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cristianstan/ead0def35eb8b6efcb37d0048e61bf76 to your computer and use it in GitHub Desktop.
Save cristianstan/ead0def35eb8b6efcb37d0048e61bf76 to your computer and use it in GitHub Desktop.
Wordpress Override Custom Post Tyle Slug.php
<?php
add_filter( 'register_post_type_args', 'modeltheme_register_post_type_args', 10, 2 );
function modeltheme_register_post_type_args( $args, $post_type ) {
if ( 'mt_listing' === $post_type ) {
$args['rewrite']['slug'] = 'new-casino-slug'; /*ADD YOUR OWN SERMON SLUG ONLY ON THIS LINE */
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment