php WooCommerce添加自定义产品标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce添加自定义产品标签相关的知识,希望对你有一定的参考价值。
<?php
// WooCommerce add a custom tab
function load_custom_tab( $tab_key, $tab_info ) {
echo apply_filters( 'the_content', $tab_info['tabContent'] );
}
function add_content_tabs( $tabs ) {
global $post;
$custom_tabs = get_field( 'tabs', $post->ID );
if ( $custom_tabs ) :
foreach( $custom_tabs as $index => $tab ) {
$tabs[$tab['tab_tite']] = array(
'title' => $tab['tab_title'],
'priority' => 50 + $index,
'tabContent' => $tab['tab_content'],
'callback' => 'load_custom_tab'
);
}
endif;
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'add_content_tabs' );
以上是关于php WooCommerce添加自定义产品标签的主要内容,如果未能解决你的问题,请参考以下文章
php 向WooCommerce产品添加自定义字段
php 将自定义字段添加到WooCommerce产品变体
php [WooCommerce Core]添加自定义标签
php [WooCommerce Core]添加自定义标签
php 将自定义字段添加到WooCommerce产品#woocommerce #custom-fields
php 将自定义字段添加到WooCommerce产品变体#woocommerce #products-variations#custom-fields