Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active February 5, 2016 19:55
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 kjohnson/e1e36882e8e144bb57fb to your computer and use it in GitHub Desktop.
Save kjohnson/e1e36882e8e144bb57fb to your computer and use it in GitHub Desktop.
<?php
function plugin_settings_groups( $groups )
{
$groups[ 'example' ] = array(
'id' => 'example',
'label' => __( 'Example Settings', 'ninja-forms-example' ),
);
return $groups;
}
add_filter( 'ninja_forms_plugin_settings_groups', 'plugin_settings_groups', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment