最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

url rewriting - rewrite url for authors

matteradmin8PV0评论

I have been struggeling with this for a while now and can't seem to get this to work. What i want is the following.

I create a custom slug for authors with

$slug = sanitize_title( $author->first_name . $author->last_name );

Then i want to have domain/$slug to show the author page of that author/user. Im trying to do this as followed:

add_filter( 'author_rewrite_rules', 'no_author_base_rewrite_rules' );

function no_author_base_rewrite_rules( $author_rewrite ) {
    global $wpdb;
    $author_rewrite = array();

    $authors = get_users();

    foreach($authors as $author) {
        $slug = sanitize_title( $author->first_name . $author->last_name );

        $author_rewrite["({$slug})/?$"] = 'index.php?author_name=' . $author->nicename;
    }

    return $author_rewrite;
}

But i can't get this to work. Anyone has a idea how i can get this to work properly?

Thanks in advance!

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far