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 ' <span>– ' .? ucfirst( $product_type ) . '</span>';
? ? }
}
add_action( 'manage_product_posts_custom_column', 'action_manage_product_posts_custom_column', 20, 2 );
結(jié)果:
- 1 回答
- 0 關(guān)注
- 150 瀏覽
添加回答
舉報(bào)