Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bobwol/c7a161ae25a5e02e9492839c421e0895 to your computer and use it in GitHub Desktop.

Select an option

Save bobwol/c7a161ae25a5e02e9492839c421e0895 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