Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active October 3, 2020 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save woogists/2964ec01c8bea50fcce62adf2f5c1232 to your computer and use it in GitHub Desktop.
Save woogists/2964ec01c8bea50fcce62adf2f5c1232 to your computer and use it in GitHub Desktop.
[Extending][Adding a Section to a Settings Tab] How to create a section beneath the products tab
/**
* 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment