我正在使用Woocommerce,我有一个名为B2B的类别中的产品,其single\\u产品。php仅向具有read\\u b2b功能的人员显示。
<?php if ( have_posts() ) : ?>
<?php do_action(\'woocommerce_before_shop_loop\'); ?>
<?php if (is_product_category(\'b2b\')) && if current_user_can(\'read_b2b\') { ?>
//*** In this case show the PRODUCT with the LOOP ***
<?php while ( have_posts() ) : the_post(); ?>
<?php woocommerce_get_template_part( \'content\', \'single-product\' ); ?>
<?php endwhile; // end of the loop. ?>
<?php } else {
//*** show error message ***
echo \'<p>You have to be a registered b2b user to see this product</p>\';
?>
你能帮我让这个黑客为单个产品工作吗。php?