第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 WooCommerce 產(chǎn)品描述中顯示所有圖像

如何在 WooCommerce 產(chǎn)品描述中顯示所有圖像

PHP
侃侃爾雅 2023-07-01 17:46:48
我想用單個(gè)產(chǎn)品頁面中的描述+所有產(chǎn)品圖片(包括變體產(chǎn)品圖片)替換我的產(chǎn)品描述。我可以使用 Magento 做到這一點(diǎn),但現(xiàn)在當(dāng)更改為 Woocommerce 時(shí)我不能。經(jīng)過研究,我嘗試使用過濾鉤,但沒有成功。我可以將文本添加到產(chǎn)品描述中,但我一直在思考如何使用函數(shù)wp_get_attachment_image_url()或wp_get_attachment_image().據(jù)我所知,顯示圖像的示例代碼:echo wp_get_attachment_image( get_the_ID(), array('700', '600'), "", array( "class" => "img-responsive" ) ). 如何在我的代碼中應(yīng)用?    // Display description tab when empty    add_filter( 'woocommerce_product_tabs', 'display_description_product_tabs' );        function display_description_product_tabs( $tabs ) {        $tabs['description'] = array(            'title'    => __( 'Description', 'woocommerce' ),            'priority' => 10,            'callback' => 'woocommerce_product_description_tab',        );        return $tabs;    }    // Add image to description    add_filter( 'the_content', 'add_product_image_woocommerce_description' );    function add_product_image_woocommerce_description( $content ) {        global $product;        // Single product pages (woocommerce)        if ( is_product() ) {            // Image id            $attachment_ids = $product->get_gallery_image_ids();            $image_content = "";            foreach( $attachment_ids as $attachment_id ) {                $image_content .= '<img src="'. wp_get_attachment_image_url($attachment_id, 'full') . '" alt="image_content" width="500" height="600">';            }            $image_content .= '<p> TEST Image content </p>';            // Inserting the custom content at the end            $content .= $image_content;        }        return $content;    }
查看完整描述

1 回答

?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以使用如下WC_Product?get_image()方法:

echo?$product->get_image(?array('700',?'600'),?array(?"class"?=>?"img-responsive"?),?''?);

然后,在您的代碼中,您可以緩沖所有回顯的自定義代碼以及主產(chǎn)品圖像(在產(chǎn)品描述內(nèi)容的末尾),如下所示:

// Display description tab when empty

add_filter( 'woocommerce_product_tabs', 'display_description_product_tabs' );

? ? function display_description_product_tabs( $tabs ) {


? ? $tabs['description'] = array(

? ? ? ? 'title'? ? => __( 'Description', 'woocommerce' ),

? ? ? ? 'priority' => 10,

? ? ? ? 'callback' => 'woocommerce_product_description_tab',

? ? );


? ? return $tabs;

}


// Add image to description

add_filter( 'the_content', 'add_product_image_woocommerce_description' );

function add_product_image_woocommerce_description( $content ) {

? ? global $product;


? ? // Single product pages (woocommerce)

? ? if ( is_product() ) {


? ? ? ? ob_start(); // Start buffering


? ? ? ? // HERE your main image

? ? ? ? echo $product->get_image( array('700', '600'), array( "class" => "img-responsive" ), '' );


? ? ? ? $image_content = "";


? ? ? ? // Loop through gallery Image Ids

? ? ? ? foreach( $product->get_gallery_image_ids() as $image_id ) {


? ? ? ? ? ? echo '<img src="'. wp_get_attachment_image_url($image_id, 'full') . '" alt="image_content" width="500" height="600">';

? ? ? ? }


? ? ? ? echo '<p> TEST Image content </p>'; // Testing text


? ? ? ? // Inserting the buffered content after

? ? ? ? $content .= ob_get_clean();

? ? }


? ? return $content;

}


查看完整回答
反對(duì) 回復(fù) 2023-07-01
  • 1 回答
  • 0 關(guān)注
  • 206 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)