Created
May 25, 2020 01:47
-
-
Save kellenmace/f8a3393385f01ee226a087ff19cc6056 to your computer and use it in GitHub Desktop.
Remove CPT Slug from Permalinks - WordPress Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Remove CPT Slug from Permalinks | |
* Description: Remove Custom Post Type Slug from Permalinks | |
* Version: 0.1.0 | |
* Author: Kellen Mace | |
* Author URI: https://kellenmace.com/ | |
* License: GPLv2 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
*/ | |
/** | |
* Remove the slug from published post permalinks. Only affect our custom post type, though. | |
*/ | |
function gp_remove_cpt_slug( $post_link, $post ) { | |
if ( 'race' === $post->post_type && 'publish' === $post->post_status ) { | |
$post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link ); | |
} | |
return $post_link; | |
} | |
add_filter( 'post_type_link', 'gp_remove_cpt_slug', 10, 2 ); | |
/** | |
* Have WordPress match postname to any of our public post types (post, page, race). | |
* All of our public post types can have /post-name/ as the slug, so they need to be unique across all posts. | |
* By default, WordPress only accounts for posts and pages where the slug is /post-name/. | |
* | |
* @param $query The current query. | |
*/ | |
function gp_add_cpt_post_names_to_main_query( $query ) { | |
// Bail if this is not the main query. | |
if ( ! $query->is_main_query() ) { | |
return; | |
} | |
// Bail if this query doesn't match our very specific rewrite rule. | |
if ( ! isset( $query->query['page'] ) || 2 !== count( $query->query ) ) { | |
return; | |
} | |
// Bail if we're not querying based on the post name. | |
if ( empty( $query->query['name'] ) ) { | |
return; | |
} | |
// Add CPT to the list of post types WP will include when it queries based on the post name. | |
$query->set( 'post_type', array( 'post', 'page', 'race' ) ); | |
} | |
add_action( 'pre_get_posts', 'gp_add_cpt_post_names_to_main_query' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment