我想使用类似的东西:
http://example.com/%category_id%/%postname%/
永久链接结构。
例如,如果帖子的ID为3的类别,则帖子的URL将为
http://example.com/3/post-name/
有谁知道如何做到这一点?我不介意修改WordPress核心。
答案 0 :(得分:1)
此代码添加了%category_id%
重写标记,并过滤了永久链接以将其替换为实际类别ID(如果有多个类别则最低)。您可以将其放在插件或主题文件中。
add_action( 'init', 'so6159452_init' );
function so6159452_init()
{
add_rewrite_tag( '%category_id%', '([0-9]+)' );
}
add_filter( 'post_link', 'so6159452_post_link', 10, 2 );
function so6159452_post_link( $permalink, $post )
{
if ( false !== strpos( $permalink, '%category_id%' ) ) {
$cats = get_the_category( $post->ID );
if ( $cats ) {
usort( $cats, '_usort_terms_by_ID' ); // order by ID
$category_id = $cats[0]->cat_ID;
} else {
// Error: no category assigned to this post
// Just use a dummy variable
$category_id = '0';
}
$permalink = str_replace( '%category_id%', $category_id, $permalink );
}
return $permalink;
}