“Tambahkan Deskripsi Produk Singkat ke Kategori Produk di WooCommerce” Kode Jawaban

Tambahkan Deskripsi Produk Singkat ke Kategori Produk di WooCommerce

function webroom_add_short_description_in_product_categories() {
	global $product;
	if ( ! $product->get_short_description() ) return;
	?>
	<div itemprop="description">
		<?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?>
	</div>
	<?php
}
add_action('woocommerce_after_shop_loop_item_title', 'webroom_add_short_description_in_product_categories', 5);
Bongani

adalah kategori produk wooCommerce

if( is_product_category() ) {
	// yay, we are on a product category page!
} else {
 
}
Hilarious Hamster

adalah kategori produk wooCommerce

if( has_term( 4, 'product_cat' ) ) {
	// do something if current product in the loop is in product category with ID 4
}
Fair Ferret

Jawaban yang mirip dengan “Tambahkan Deskripsi Produk Singkat ke Kategori Produk di WooCommerce”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya