WooCommerce Add Long Description to Products on Shop Page with Character limit code example

Example: WooCommerce Add Long Description to Products on Shop Page with Character limit

/**
 * WooCommerce, Add Long Description to Products on Shop Page with Character limit
 *
 * @link https://wpbeaches.com/woocommerce-add-short-or-long-description-to-products-on-shop-page
 */
add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_long_description' , 9);
function wc_add_long_description() {
  global $product;

  ?>
        
post->post_content ), 0,77 ); echo '...' ?>

Tags:

Misc Example