WordPress create a user profile page for everyone
WordPress create a user profile page for everyone I am trying to make a user profile page for all WordPress user, so visitor can see each user's profile with their basic information. user is the native Author not a custom post type user Author for example: My custom user profile links https://myexample.com/user/joe/ ---- will show joe's profile https://myexample.com/user/joe/ https://myexample.com/user/jhon/ ---- will show jhon's profile https://myexample.com/user/jhon/ but my code works for only admin/author is there any way to dispaly <?php $ID = the_author_meta('ID'); $first_name = the_author_meta('first_name'); $last_name = the_author_meta('last_name'); $user_fullname = $first_name . ' ' . $last_name; $nickname = the_author_meta('nickname'); $branch_code = the_author_meta('branch_code'); $index_no = the_author_meta('index_no'); $sp_designation = the_author_meta('sp_desi...