如何删除格式/类别' URL中的永久链接?

时间:2016-01-04 02:11:33

标签: php wordpress permalinks

在我的WordPress网站上的设置中,我需要Post Permalink看起来像" zzzz.com/sample-post/"。然而,我的网站使用自定义帖子,所以我下载了插件'从自定义帖子类型删除slug'但所有帖子仍然以#34; zzzz.com/format/category/sample-post/"格式显示。我想要' format/category'部分从URL中删除。只是想知道是否有其他类似的插件可以删除这个或者是否需要手动输入一些代码?

2 个答案:

答案 0 :(得分:1)

首先禁用您安装的插件!!

设置自定义结构: /%postname%/

设置类别基础: . (dot not /)

在将your_post_type更改为您的帖子类型

之前,请尝试此操作
function firefog_remove_cpt_slug( $post_link, $post, $leavename ) {

    if ( ! in_array( $post->post_type, array( 'your_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', 'firefog_remove_cpt_slug', 10, 3 );

function firefog_parse_request_tricksy( $query ) {

    // Only noop the main query
    if ( ! $query->is_main_query() )
        return;

    // Only noop our very specific rewrite rule match
    if ( 2 != count( $query->query )
        || ! isset( $query->query['page'] ) )
        return;

    // 'name' will be set if post permalinks are just post_name, otherwise the page rule will match
    if ( ! empty( $query->query['name'] ) )
        $query->set( 'post_type', array( 'post', 'your_post_type', 'page' ) );
}
add_action( 'pre_get_posts', 'firefog_parse_request_tricksy' );

答案 1 :(得分:0)

在wp-admin中,转到以下菜单:Settings - > Permalinks。您现在位于永久链接页面,请选择Post name选项。您也可以使用Custom Structure选项。