基本上,只要检查操作内部当前用户角色的数组是否包含wholesale
角色
function content_below_checkout_button() {
if ( in_array( \'wholesale\', wp_get_current_user()->roles ) ) {
echo \'<div style="text-align: center"><img style="margin-top:20px; display:inline-block;" src="/uploads/2020/07/image.png\'.$photo->name.\'"/></div>\';
}
}
add_action( \'woocommerce_review_order_after_submit\', \'content_below_checkout_button\' );
我不确定您的其余代码是怎么回事,但我认为它是可行的。