437
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()
Nếu bạn thích bài viết này, hãy ủng hộ chúng tôi bằng cách đăng ký nhận bài viết mới ở bên dưới và đừng quên chia sẻ kiến thức này với bạn bè của bạn nhé. Bạn cũng có thể theo dõi blog này trên Twitter và Facebook
Liên hệ
Công ty chuyên Thiết kế website uy tín nhất Miền Bắc: http://vinastar.net
Hotline tư vấn: 0989 48 3456
Nguồn: Sưu tầm trên internet