How to check if a page is category or product in woocommerce?

前端 未结 2 1687
刺人心
刺人心 2021-01-01 22:30

I\'m trying to use is_category in woocommerce.php which is not working. I want to print the title according the page.

IF a page is category page then w

相关标签:
2条回答
  • 2021-01-01 22:40

    Try creating a archive-product.php file within the theme templates.

    I usually copy the one that is in the woocommerce folder and add a span with "test" text to the one I create so I can see it's working.

    0 讨论(0)
  • 2021-01-01 22:44

    you should use

    is_product_category()
    

    instead of

    is_category()
    
    0 讨论(0)
提交回复
热议问题