您好,我正在尝试重写一个特定类别中帖子的permalink结构,该结构应为类别名称-作者名称-帖子标题当我使用下面的代码时,URL中没有作者名称,请告诉我哪里错了。
add_filter( \'post_link\', \'custom_permalink\', \'author_link\', 10, 3 );
function custom_permalink( $permalink, $post, $leavename ) {
// Get the category for the post
$category = get_the_category($post->ID);
if ( !empty($category) && $category[0]->cat_name == "Tips" ) {
$cat_name = strtolower($category[0]->cat_name);
$author_nickname = get_user_meta( $author_id, \'nickname\', true );
$permalink = trailingslashit( home_url(\'/\'. $cat_name . \'/\' .
$author_nickname . \'/\' . $post->post_name .\'/\' ) );
}
return $permalink;
}
add_filter( \'category_link\', \'custom_category_permalink\', 10, 2 );
function custom_category_permalink( $link, $cat_id ) {
$slug = get_term_field( \'slug\', $cat_id, \'category\' );
if ( ! is_wp_error( $slug ) && \'tips\' === $slug ) {
$link = home_url( user_trailingslashit( \'/tips/\', \'category\' ) );
}
return $link;
}
add_action( \'init\', \'custom_rewrite_rules\' );
function custom_rewrite_rules() {
add_rewrite_rule(
\'tips(?:/page/?([0-9]{1,})|)/?$\',
\'index.php?category_name=tips&paged=$matches[1]\',
\'top\' // The rule position; either \'top\' or \'bottom\' (default).
);
add_rewrite_rule(
\'tips/\\d+/([^/]+)(?:/([0-9]+))?/?$\', // <- here, add the \\d+/
\'index.php?category_name=tips&name=$matches[1]&page=$matches[2]\',
\'top\'
);
}
SO网友:MaksimL
此代码对我很有用:
add_filter( \'post_link\', \'custom_permalink\', \'author_link\', 10, 3 );
function custom_permalink( $permalink, $post, $leavename ) {
// Get the category for the post
$category = get_the_category($post->ID);
if ( !empty($category) && $category[0]->cat_name == "Tips" ) {
$cat_name = strtolower($category[0]->cat_name);
$authordata = get_userdata( $post->post_author );
$author = $authordata->user_nicename;
$permalink = trailingslashit( home_url(\'/\'. $cat_name . \'/\' . $author . \'/\' .
$post->post_name .\'/\' ) );
}
return $permalink;
}
add_filter( \'category_link\', \'custom_category_permalink\', 10, 2 );
function custom_category_permalink( $link, $cat_id ) {
$slug = get_term_field( \'slug\', $cat_id, \'category\' );
if ( ! is_wp_error( $slug ) && \'tips\' === $slug ) {
$link = home_url( user_trailingslashit( \'/tips/\', \'category\' ) );
}
return $link;
}
add_action( \'init\', \'custom_rewrite_rules\' );
function custom_rewrite_rules() {
add_rewrite_rule(
\'tips(?:/page/?([0-9]{1,})|)/?$\',
\'index.php?category_name=tips&paged=$matches[1]\',
\'top\' // The rule position; either \'top\' or \'bottom\' (default).
);
add_rewrite_rule(
\'tips/\\d+/([^/]+)(?:/([0-9]+))?/?$\', // <- here, add the \\d+/
\'index.php?category_name=tips&name=$matches[1]&page=$matches[2]\',
\'top\'
);
}