作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在我的站点中使用这个 Woocommerce 插件。我想要的是在单个产品中显示我的自定义字段。
我知道我必须为此使用钩子(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.php
到 wp-content/themes/[active theme]/woocommerce/single-product/tabs/description.php
根据需要创建文件夹,现在编辑文件并添加逻辑以显示您的自定义字段。
关于wordpress - Woocommerce 单一产品选项卡中的自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36009879/
我是一名优秀的程序员,十分优秀!