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);
解決策はありますか?どうもありがとう!