<?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;
}
在哪里添加此代码(我的意思是在哪个文件中)?
答案 0 :(得分:0)
将此代码添加到wordpress主题中的functions.php
文件中。