Wordpress中特定类别的自定义永久链接结构

时间:2020-02-15 19:32:39

标签: wordpress permalinks

我正在尝试为Wordpress中的特定类别更改自定义永久链接结构。但是代码导致该类别的帖子出现404错误。 永久链接结构应为:类别名称-作者名称-帖子名称 这是我的代码

add_filter( 'post_link', 'custom_permalink', 10, 3 );
function custom_permalink( $permalink, $post, $leavename ) {
// Get the categories for the post
$category = get_the_category($post->ID); 
if (  !empty($category) && $category[0]->cat_name == "Diamond rings" ) {
    $permalink = trailingslashit( home_url('/'. $category->cat_name .'/'. $auth_id->author_name .'/'. 
$post->post_name  .'/' ) );
}
return $permalink;
}

0 个答案:

没有答案