/ninja-forms-example-settings-plugin-settings-groups.php Secret
Last active Feb 5, 2016
<?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