如何在WooCommerce的产品设置选项下创建额外的设置选项?

时间:2015-06-03 06:53:10

标签: php wordpress woocommerce

enter image description here

<?php
/**
 * Create the section beneath the products tab
 **/
add_filter( 'woocommerce_get_sections_products', 'wcslider_add_section' );
function wcslider_add_section( $sections )
{   
    $sections['wcslider'] = __( 'WC Slider', 'text-domain' );
    return $sections;
}

在哪里添加此代码(我的意思是在哪个文件中)?

1 个答案:

答案 0 :(得分:0)

将此代码添加到wordpress主题中的functions.php文件中。