Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

a

// Add Shortcode
function custom_shortcode() {

	<?php 
	    $current_user = wp_get_current_user();
	    echo 'نام کاربری: ' . $current_user->user_login . '<br />';
	    echo 'ایمیل: ' . $current_user->user_email . '<br />';
	    echo 'نام: ' . $current_user->user_firstname . '<br />';
	    echo 'نام خانوادگی: ' . $current_user->user_lastname . '<br />';
	    echo 'شناسه: ' . $current_user->ID . '<br />';
	    echo 'آدرس وب سایت: ' . $current_user->user_url . '<br />';
	    echo 'تاریخ عضویت: ' . $current_user->user_registered . '<br />';
	    echo 'نقش کاربری: ' . $current_user->roles[0]. '<br />';
	?>

}
add_shortcode( 'dmagan', 'custom_shortcode' );