Show Product Custom Field in the Category Pages

// Show Product Custom Field in the Category Pages

add_action( 'woocommerce_after_shop_loop_item_title', 'awk_woocommerce_product_dealmeal', 35 );  
 
function awk_woocommerce_product_dealmeal() {
global $post;
if ( is_home() || is_shop() || is_product_category() || is_product_tag() ) {
   echo '<span class="myclass">';
   echo get_post_meta( $post->ID, 'meal_deal', true );
   echo '</span>';
}
}
Scroll to Top