How to display current_user bio
You probably want to use wp_get_current_user to find out which user is browsing the site. $current_user = wp_get_current_user(); echo ‘User ID: ‘ . $current_user->ID . ‘<br />’; From there you’ll use the ID to pull the user’s metadata with get_user_meta. $all_meta_for_user = get_user_meta( $current_user->ID ); echo ‘User Description: ‘ . $all_meta_for_user[‘description’] . ‘<br />’; The … Read more