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

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

WooCommerce:如何在管理產(chǎn)品列表中的產(chǎn)品名稱旁邊添加產(chǎn)品類型

WooCommerce:如何在管理產(chǎn)品列表中的產(chǎn)品名稱旁邊添加產(chǎn)品類型

PHP
www說(shuō) 2023-05-12 15:50:02
我創(chuàng)建了一個(gè)新的產(chǎn)品類型“ Crush Video Product”。它從其自定義選項(xiàng)卡中正確保存所有元字段。// add a product typeadd_filter( 'product_type_selector', 'crush_add_custom_product_type' );function crush_add_custom_product_type( $types ){    $types[ 'crush_video_product' ] = __( 'Group Video Class' );    return $types;}// Initiate Class when plugin is loadedadd_action( 'plugins_loaded', 'crush_create_custom_product_type' );function crush_create_custom_product_type(){    // declare the product class    class WC_Product_Crush_Video_Product extends WC_Product{        public function __construct( $product ) {            $this->product_type = 'crush_video_product';            parent::__construct( $product );            // add additional functions here        }        // Needed since Woocommerce version 3        public function get_type() {            return 'crush_video_product';        }    }}我見(jiàn)過(guò)一些插件,產(chǎn)品類型的名稱寫(xiě)在管理區(qū)域的產(chǎn)品名稱之后,您可以在管理區(qū)域看到所有產(chǎn)品。我搜索了很多,但找不到一個(gè)鉤子來(lái)做到這一點(diǎn)。
查看完整描述

1 回答

?
元芳怎么了

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

渲染列:名稱。

似乎缺少更合適的鉤子,所以一種方法是,manage_product_posts_custom_column如果需要,使用一些 CSS 來(lái)顯示


function action_manage_product_posts_custom_column( $column, $postid ) {? ? ? ??

? ? if ( $column == 'name' ) {

? ? ? ? // Get product

? ? ? ? $product = wc_get_product( $postid );

? ? ? ??

? ? ? ? // Get type

? ? ? ? $product_type = $product->get_type();

? ? ? ??

? ? ? ? // Output

? ? ? ? echo '&nbsp;<span>&ndash; ' .? ucfirst( $product_type ) . '</span>';

? ? }

}

add_action( 'manage_product_posts_custom_column', 'action_manage_product_posts_custom_column', 20, 2 );

結(jié)果:

http://img1.sycdn.imooc.com/645defe200017dc104990391.jpg

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

添加回答

舉報(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)