gpt4 book ai didi

wordpress - Woocommerce 单一产品选项卡中的自定​​义字段

转载 作者:行者123 更新时间:2023-12-01 12:29:13 29 4
gpt4 key购买 nike

您好,我正在我的站点中使用这个 Woocommerce 插件。我想要的是在单个产品中显示我的自定义字段。

enter image description here

我知道我必须为此使用钩子(Hook),但完全不知道使用什么钩子(Hook)。在 woocommerce 模板中,我找到了 tabs.php 文件。

这是代码

$tabs = apply_filters( 'woocommerce_product_tabs', array() );

if ( ! empty( $tabs ) ) : ?>

<div class="woocommerce-tabs wc-tabs-wrapper">
<ul class="tabs wc-tabs">
<?php foreach ( $tabs as $key => $tab ) : ?>
<li class="<?php echo esc_attr( $key ); ?>_tab">
<a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php foreach ( $tabs as $key => $tab ) : ?>
<div class="panel entry-content wc-tab" id="tab-<?php echo esc_attr( $key ); ?>">
<?php call_user_func( $tab['callback'], $key, $tab ); ?>
</div>
<?php endforeach; ?>
</div>

谁能帮帮我?

最佳答案

复制 wp-content/plugins/woocommerce/templates/single-product/tabs/description.phpwp-content/themes/[active theme]/woocommerce/single-product/tabs/description.php

根据需要创建文件夹,现在编辑文件并添加逻辑以显示您的自定义字段。

关于wordpress - Woocommerce 单一产品选项卡中的自定​​义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36009879/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com