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

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

從 WooCommerce 中的特定產(chǎn)品屬性術(shù)語(yǔ)名稱獲取產(chǎn)品

從 WooCommerce 中的特定產(chǎn)品屬性術(shù)語(yǔ)名稱獲取產(chǎn)品

PHP
青春有我 2023-07-30 13:54:22
我正在嘗試創(chuàng)建一個(gè) WooCommerce 短代碼來(lái)顯示帶有一些信息的一種產(chǎn)品。每天都會(huì)有一個(gè)具有屬性DAGAANBIEDING和價(jià)值的新產(chǎn)品JA或NEE。我只想展示該產(chǎn)品的價(jià)值JA。短代碼正在運(yùn)行,但沒(méi)有顯示任何內(nèi)容。這就是我所擁有的://custom shortcodesif( !function_exists('product_snippet') ) {        function product_snippet( $atts ) {        // Attributes        extract( shortcode_atts(             array(                'taxonomy' => 'pa_dagaanbieding', // You will use $id to get the value of this attribute                'terms' => 'Ja' // You will use $snippet to get the value of this attribute            ),             $atts        ));        // Get an instance of the product object        $product = wc_get_product( $id );        // Displays go here        return '<div class="row">        <div class="col-md-6"><h3>'.$product->get_title().'</h3>'.$product->get_image().'<br><br><a href="'.get_permalink( $id ).'"><button type="submit" class="single_add_to_cart_button button alt">Bekijk aanbieding</button></a></div>        <div class="col-md-6">'.$product->get_regular_price().' '.$product->get_regular_price().'</div>        </div>';                    }    add_shortcode( 'product_snippet', 'product_snippet' );}但它不顯示信息。
查看完整描述

1 回答

?
UYOU

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

您的代碼中存在一些錯(cuò)誤和遺漏的內(nèi)容。嘗試以下操作,使用自定義輕型 SQL 查詢獲取術(shù)語(yǔ)名稱具有pa_dagaanbieding產(chǎn)品屬性(分類法)的產(chǎn)品:Ja


if( !function_exists('display_product_dagaanbieding_ja') ) {    


    function display_product_dagaanbieding_ja( $atts ) {

        // Attributes

        extract( shortcode_atts( 

            array(

                'taxonomy'  => 'pa_dagaanbieding', // The taxonomy of this product attribute

                'term_name' => 'Ja', // The term name for this product attribute

            ), 

            $atts

        ));

        

        global $wpdb;

        

        // SQL query: To get the product ID from defined product attribute term name

        $product_id = $wpdb->get_var( $wpdb->prepare("

            SELECT tr.object_id

            FROM {$wpdb->prefix}term_relationships tr

            INNER JOIN {$wpdb->prefix}term_taxonomy tt

                ON tr.term_taxonomy_id = tt.term_taxonomy_id

            INNER JOIN {$wpdb->prefix}terms t

                ON tt.term_id = t.term_id

            WHERE tt.taxonomy = '%s'

            AND t.name = '%s'

        ", $taxonomy, $term_name ) );

    

        // Exit if there is no product Id

        if( ! $product_id ) return;


        // Get an instance of the product object

        $product = wc_get_product( $product_id );


        // Exit if the product object is not defined

        if( ! is_a( $product, 'WC_Product' ) ) return;


        // Displays go here

        return '<div class="row">

        <div class="col-md-6"><h3>'.$product->get_title().'</h3>'.$product->get_image().'<br><br><a href="'.$product->get_permalink().'"><button type="submit" class="single_add_to_cart_button button alt">Bekijk aanbieding</button></a></div>

        <div class="col-md-6">'.$product->get_price_html().'</div>

        </div>';

    }


    add_shortcode( 'product_ja', 'display_product_dagaanbieding_ja' );

}

代碼位于活動(dòng)子主題(或活動(dòng)主題)的 function.php 文件中。經(jīng)過(guò)測(cè)試并有效。


用法: [product_ja]或echo do_shortcode('[product_ja]');


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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