我有两种类型的帖子:自定义帖子和Wordpress常规帖子。 我希望url像这样:
/category-name/post-name/
用于Wordpress常规帖子和
/post-name/
用于自定义帖子。
我能够获得自定义帖子所需的网址:
function remove_base_slug( $post_link, $post, $leavename ) {
if ( 'trip-options' != $post->post_type || 'publish' != $post->post_status ) {
return $post_link;
}
$post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
return $post_link;
}
add_filter( 'post_type_link', 'remove_base_slug', 10, 3 );
function check_parse_request( $query ) {
if ( ! $query->is_main_query() || 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) {
return;
}
if ( ! empty( $query->query['name'] ) ) {
$query->set( 'post_type', array( 'post', 'trip-options', 'page' ) );
}
}
add_action( 'pre_get_posts', 'check_parse_request' );
对于常规帖子,我尝试通过WP Dashboard -> Settings -> Permalinks
进行设置,并将其设置为/%category%/%postname%
。这样,它适用于常规帖子,但会破坏我的自定义帖子网址。
对两种类型的帖子,我都可以保留所需的网址结构吗?
所以我需要类似的东西:
if (get_post_type() === 'trip-options') {
/* URL shoud be /post-name/ */
}
else {
/* URL shoud be category/post-name */
}
答案 0 :(得分:0)
您可以使用此插件修改自定义帖子类型的永久链接 Custom Post Type Permalinks。
或者,如果您希望通过编程方式进行操作,可以在SO
上关注此回答的问题答案 1 :(得分:0)