真的希望有人能帮忙。我正在使用Woocommerce简单拍卖,需要在Woocommerce电子邮件模板auction\\u finish中包含赢得拍卖的人的用户名。php。
以下代码由开发人员提供;
<?php $wining_user_id = get_post_meta( $product_id, \'_auction_current_bider\', true );
$user = get_userdata ( $wining_user_id ); ?>
然后我又加上了这个;
<?php echo \'Username: \' . $user->username . ; ?>
可悲的是,没有骰子,我看到
Username: 电子邮件中的文本,但不是实际用户名。
在支持票证中,开发人员仅向我提供以下内容:$user variable has user data, you need to output it like echo $user->username;
有人能帮忙吗。