Skip to content

Instantly share code, notes, and snippets.

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 Shelob9/772e7418531802a6062492ef522e3552 to your computer and use it in GitHub Desktop.
Save Shelob9/772e7418531802a6062492ef522e3552 to your computer and use it in GitHub Desktop.
Remove the Caldera Forms Pro sub menu
<?php
/**
* Remove Caldera Forms Pro sub menu if user has the ID of 1
*/
add_action( 'admin_menu', function () {
if( ! class_exists( 'Caldera_Forms' ) ){
return;
}
$user = get_current_user_id();
if (1 != $user ) {
remove_submenu_page(Caldera_Forms::PLUGIN_SLUG, 'cf-pro');
}
},500 );
<?php
/**
* Remove Caldera Forms Pro sub menu
*/
add_action( 'admin_menu', function () {
if( ! class_exists( 'Caldera_Forms' ) ){
return;
}
remove_submenu_page( Caldera_Forms::PLUGIN_SLUG, 'cf-pro' );
},500 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment