- shares
- Facebook Messenger
- Gmail
- Viber
- Skype
Các template tags sau đây bạn có thể sẽ cần trong khi phát triển wordpress theme bán hàng với woocommerce.
Conditional tags – Với Category
//Returns true when viewing a product category archive. is_product_category(); is_product_category( 'shirts' ); //When the product category page for the ‘shirts’ category is being displayed. is_product_category( array( 'shirts', 'games' ) ); //When the product category page for the ‘shirts’ or ‘games’ category is being displayed.
Conditional tags – Tags
//Returns true when viewing a product tag archive is_product_tag() is_product_tag( 'shirts' ); //When the product tag page for the ‘shirts’ tag is being displayed. is_product_tag( array( 'shirts', 'games' ) ); //When the product tag page for the ‘shirts’ or ‘games’ tags is being displayed.
Xác định Template Page
//Returns true when on the product archive page (shop). is_shop() //Returns true on a single product page. Wrapper for is_singular. is_product() //Returns true on the cart page. is_cart() //Returns true on the checkout page. is_checkout() //Returns true on the customer’s account pages. is_account_page()
Để nhận được bài viết mới vui lòng đăng ký kênh kiến thức WordPress từ A-Z ở Form bên dưới. Bạn cũng có thể nhận được sự trợ giúp trên Twitter và Facebook
- shares
- Facebook Messenger
- Gmail
- Viber
- Skype