如何获取当前用户电子邮件而不是用户ID?我正在使用以下短代码:
add_shortcode( \'current_user_link\', \'wppbc_current_user_link\' );
function wppbc_current_user_link( $atts, $content ) {
if ( is_user_logged_in() ) {
$id = get_current_user_id();
// make sure to change the URL to represent your setup.
return "<a href=\'http://website.com/user-listing-page/user/{$id}\'>Your User Page</a>";
}
return ;
}