固定链接不适用于自定义帖子和类别 [英] permalink not working on custom post and category

查看:74
本文介绍了固定链接不适用于自定义帖子和类别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在wordpress中添加wordpress自定义帖子类型和类别

I am trying to add wordpress custom post type and category in wordpress

   add_action( 'init', 'work_register' );   

    function work_register() {   

    $labels = array( 
        'name' => _x('Work', 'post type general name'), 
        'singular_name' => _x('Work Item', 'post type singular name'), 
        'add_new' => _x('Add New', 'work item'), 
        'add_new_item' => __('Add New Work Item'), 
        'edit_item' => __('Edit Work Item'), 
        'new_item' => __('New Work Item'), 

        'view_item' => __('View Work Item'), 
        'search_items' => __('Search Work'), 
        'not_found' => __('Nothing found'), 
        'not_found_in_trash' => __('Nothing found in Trash'), 
        'parent_item_colon' => '' 
    );   

    $args = array( 
        'labels' => $labels, 
        'public' => true, 
        'publicly_queryable' => true, 
        'show_ui' => true, 
        'query_var' => true, 
        'menu_icon' => get_stylesheet_directory_uri() . '/article16.png', 
        'rewrite' => array( 'slug' => 'work', 'with_front'=> false ), 
        'capability_type' => 'post', 
        'hierarchical' => true,
        'has_archive' => true,  
        'menu_position' => null, 
        'supports' => array('title','editor','thumbnail') 
    );   

    register_post_type( 'work' , $args ); 

    register_taxonomy( 'categories', array('work'), array(
        'hierarchical' => true, 
        'label' => 'Categories', 
        'singular_label' => 'Category', 
        'rewrite' => array( 'slug' => 'categories', 'with_front'=> false )
        )
    );

    register_taxonomy_for_object_type( 'categories', 'work' );
}

我的永久链接结构为:

/%category%/%postname%/

当我从帖子中添加时,它会给我链接

When I am adding from post it is giving me link

  /category/postname

但是当我从自定义帖子中添加时,它只给我

but when I am adding from custom post, it is giving me only

 /postname 

我也想在自定义帖子中使用/ category / postname

I want /category/postname in custom post also

请提示我错了

推荐答案

更改您的重写以添加工作岗位类型查询var:

Change your rewrite to add the work post type query var:

'rewrite' => array('slug' => 'work/%categories%')

然后过滤 post_type_link 将所选类别插入到永久链接中:

Then filter post_type_link to insert the selected categories into the permalink:

function custom_work_post_link( $post_link, $id = 0 ){
    $post = get_post($id);  
    if ( is_object( $post ) ){
        $terms = wp_get_object_terms( $post->ID, 'work' );
        if( $terms ){
            return str_replace( '%categories%' , $terms[0]->slug , $post_link );
        }
    }
    return $post_link;  
}
add_filter( 'post_type_link', 'custom_work_post_link', 1, 3 );

还有类似可为您完成此操作的自定义帖子类型永久链接

这篇关于固定链接不适用于自定义帖子和类别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆