Skip to content

Instantly share code, notes, and snippets.

@cedriccharles4
Last active November 13, 2017 10:19
Show Gist options
  • Save cedriccharles4/458da1470bc9e6688ce3c99279f378c7 to your computer and use it in GitHub Desktop.
Save cedriccharles4/458da1470bc9e6688ce3c99279f378c7 to your computer and use it in GitHub Desktop.
Removing Ninja Forms Metabox from post/page edition page
<?php
//Remove Ninja Forms Metabox
add_action( 'do_meta_boxes', 'noo_remove_metaBox_nf');
function noo_remove_metaBox_nf() {
remove_meta_box('ninja_forms_selector', 'post', 'side');
remove_meta_box('ninja_forms_selector', 'page', 'side');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment