如何用wordpress中的类别名称替换自定义post slug

时间:2015-04-28 11:23:36

标签: wordpress custom-post-type slug

我需要更改自定义帖子"产品"的固定链接结构。 默认值为Domain_name.com./product/product_name 我需要将其更改为: Domain_name.com./category_name/product_name 我使用了插件"类型"创建自定义帖子 我安装了一个名为wp-permastructure的插件来改变永久链接但是 当我在新格式结构中添加%category%/%postname%/时,我收到404错误。 我添加以下代码来删除产品slug:

function gp_remove_cpt_slug( $post_link, $post, $leavename ) 
{
     if ( 'product' != $post->post_type || 'publish' != $post->post_status ) {
        return $post_link;
    }

    $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link);

    return $post_link;
}
add_filter( 'product', 'gp_remove_cpt_slug', 10, 3 );

function gp_parse_request_trick( $query ) {

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

    // Only noop our very specific rewrite rule match
    if ( 3!= 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', 'product', 'page' ) );
    }
}
add_action( 'pre_get_posts', 'gp_parse_request_trick' );

但我仍然得到404错误 对你的问题有一些想法

0 个答案:

没有答案