我在列出给定作者的所有帖子时遇到问题,author.php
所有用户都可以正常工作,除了管理员。
http://somedomain.com/author/MyUser - OK(非管理员用户!)
http://somedomain.com/author/?author=1 - OK(管理员 ID = 1)
http://somedomain.com/author/admin - 404
http://somedomain.com/author/User.Admin - 404
http://somedomain.com/author/AdminNickName - 404
wp_query
如下:
$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
$args = array( 'post_type' => 'post', 'author' =>$curauth->ID, 'posts_per_page' => 10 );
$wp_query = new WP_Query($args);
有什么解决办法吗?非常感谢!