Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active April 13, 2017 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/dd443eb123b65a280cd9f8d9f55604a6 to your computer and use it in GitHub Desktop.
Save billerickson/dd443eb123b65a280cd9f8d9f55604a6 to your computer and use it in GitHub Desktop.
<?php
/**
* Add Settings Section
*
*/
function be_wpforms_settings_section( $sections, $form_data ) {
$sections['be_convertkit'] = __( 'ConvertKit', 'integrate_convertkit_wpforms' );
return $sections;
}
add_filter( 'wpforms_builder_settings_sections', 'be_wpforms_settings_section', 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment