Full Name Shortcode
// Check if a user is logged in if (is_user_logged_in()) { // Get the current user’s information $current_user = wp_get_current_user(); // Get the first name and last name of the user $first_name = $current_user->first_name; $last_name = $current_user->last_name; // Check if…Continue reading