Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 WooCommerce 的主商店窗口中检查产品类别的条件?例如:
if($product_category == 'service') { echo 'alpha'; } else { echo 'beta'; }
if (is_product_category('slug')) { // Example: Shirts echo 'alpha, hello im a shirt'; } else { echo 'beta'; }