woocommerce_content()
Output WooCommerce content.
Description Description
This function is only used in the optional ‘woocommerce.php’ template. which people can add to their themes to add basic woocommerce support. without hooks or modifying core templates.
Source Source
File: includes/wc-template-functions.php
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 | function woocommerce_content() { if ( is_singular( 'product' ) ) { while ( have_posts() ) : the_post(); wc_get_template_part( 'content' , 'single-product' ); endwhile ; } else { ?> <?php if ( apply_filters( 'woocommerce_show_page_title' , true ) ) : ?> <h1 class = "page-title" ><?php woocommerce_page_title(); ?></h1> <?php endif ; ?> <?php do_action( 'woocommerce_archive_description' ); ?> <?php if ( woocommerce_product_loop() ) : ?> <?php do_action( 'woocommerce_before_shop_loop' ); ?> <?php woocommerce_product_loop_start(); ?> <?php if ( wc_get_loop_prop( 'total' ) ) : ?> <?php while ( have_posts() ) : ?> <?php the_post(); ?> <?php wc_get_template_part( 'content' , 'product' ); ?> <?php endwhile ; ?> <?php endif ; ?> <?php woocommerce_product_loop_end(); ?> <?php do_action( 'woocommerce_after_shop_loop' ); ?> <?php else : do_action( 'woocommerce_no_products_found' ); endif ; } } |