Во-первых, вам нужно отфильтровать постоянную ссылку для вашего пользовательского типа поста, чтобы все опубликованные посты не содержали слаг в своих URL:
function stackoverflow_remove_cpt_slug( $post_link, $post ) {
if ( 'landing' === $post->post_type && 'publish' === $post->post_status ) {
$post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
}
return $post_link;
}
add_filter( 'post_type_link', 'stackoverflow_remove_cpt_slug', 10, 2 );
На этом этапе попытка просмотреть ссылку приведет кприводить к ошибке 404 (страница не найдена). Это потому, что WordPress знает только то, что сообщения и страницы могут иметь URL-адреса, такие как domain.com/post-name/
или domain.com/page-name/
. Нам нужно научить этому тому, что сообщения нашего пользовательского типа могут также иметь URL-адреса, такие как domain.com/cpt-post-name/
.
function stackoverflow_add_cpt_post_names_to_main_query( $query ) {
// Return if this is not the main query.
if ( ! $query->is_main_query() ) {
return;
}
// Return if this query doesn't match our very specific rewrite rule.
if ( ! isset( $query->query['page'] ) || 2 !== count( $query->query ) ) {
return;
}
// Return 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', 'landing' ) );
}
add_action( 'pre_get_posts', 'stackoverflow_add_cpt_post_names_to_main_query' );