<?php /** * create section beneath products tab **/ add_filter( 'woocommerce_get_sections_products', 'wcslider_add_section' ); function wcslider_add_section( $sections ) { $sections['wcslider'] = __( 'wc slider', 'text-domain' ); return $sections; }
where add code (i mean in file) ?
add code functions.php
file in wordpress theme.
Comments
Post a Comment