Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
woocommerce
/
custom
/
template-parts
/
Editing: content-product-meta.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ use radiustheme\Koncrete\RDTheme; global $product; do_action( 'woocommerce_product_meta_start' ); $cats_html = wc_get_product_category_list( $product->get_id(), ', ', '<div class="product-meta"><span>' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'koncrete' ) . '</span> ', '</div>' ); $tags_html = wc_get_product_tag_list( $product->get_id(), ', ', '<div class="product-meta"><span>' . _n( 'Tag:', 'Tags:', count( $product->get_tag_ids() ), 'koncrete' ) . '</span> ', '</div>' ); if ( RDTheme::$options['wc_cats'] ) { echo wp_kses_post( $cats_html ); } if ( RDTheme::$options['wc_tags'] ) { echo wp_kses_post( $tags_html ); } do_action( 'woocommerce_product_meta_end' );
Save
Cancel