Skip to content

Instantly share code, notes, and snippets.

@jameslaws
Created October 28, 2015 02:46
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 jameslaws/715c9260fadea5e1b311 to your computer and use it in GitHub Desktop.
Save jameslaws/715c9260fadea5e1b311 to your computer and use it in GitHub Desktop.
Remove the Ninja Forms Add New Form button from wp_editor if non-admin
<?php
function example_remove_add_new( $instance ) {
if ( ! current_user_can( 'manage_options' ) ) {
remove_filter( 'media_buttons_context', array( $instance->add_form_button, 'insert_form_tinymce_buttons' ) );
}
}
add_action( 'nf_admin_init', 'example_remove_add_new' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment