Wp-members User_IDをゲットする(メール文章内も)

[test01]ショートコードを作成 (メール文章内にも使用することOK)

User_IDをゲット

function test_shortcode01() {
$user = wp_get_current_user();
return $user->ID;
}
add_shortcode( 'test01', 'test_shortcode01' );

User_IDをゲット(解説)

function test_shortcode01() {
$user = wp_get_current_user();
return $user->ID;
}
add_shortcode( 'test01', 'test_shortcode01' );