WooCommerce添加额外标签 - 单个产品页面

时间:2017-05-05 04:31:44

标签: tabs woocommerce

以下是WooCommerce添加额外标签的代码: 我的问题是,如何在标签内容中插入视频链接或iframe。

add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {

    // Adds the new tab

    $tabs['test_tab'] = array(
        'title'     => __( 'New Product Tab', 'woocommerce' ),
        'priority'  => 50,
        'callback'  => 'woo_new_product_tab_content'
    );

    return $tabs;

}
function woo_new_product_tab_content() {

    // The new tab content

    echo '<h2>New Product Tab</h2>';
    echo '<p>Here\'s your tab content.</p>';

}

如何在&#34;标签内容&#34;

中插入锚文本或iframe

任何帮助都会受到赞赏..

干杯

1 个答案:

答案 0 :(得分:0)

如果您只想在标签内容中显示静态视频iframe,只需在标签内容回调函数中添加iframe / video标签

function woo_new_product_tab_content() {
  // The new tab content
  echo '<h2>See the video</h2>';
  echo '<div><iframe width="100%" height="315" src="paste your video link here" frameborder="0" allowfullscreen></iframe></div>'; }

或者如果您想要每个产品的动态视频链接,那么您必须首先在相应的产品元数据中存储视频链接。然后在上面'src'attr。

上回显get_post_meta视频