-
Home
-
hCaptcha for WP
- Tips
function plt_hide_hcaptcha_for_forms_and_more_menus() {
//Hide "hCaptcha".
remove_menu_page('hcaptcha');
//Hide "hCaptcha → General".
remove_submenu_page('hcaptcha', 'hcaptcha');
//Hide "hCaptcha → Integrations".
remove_submenu_page('hcaptcha', 'hcaptcha-integrations');
//Hide "hCaptcha → Forms".
remove_submenu_page('hcaptcha', 'hcaptcha-forms');
//Hide "hCaptcha → Events".
remove_submenu_page('hcaptcha', 'hcaptcha-events');
//Hide "hCaptcha → System Info".
remove_submenu_page('hcaptcha', 'hcaptcha-systeminfo');
}
add_action('admin_menu', 'plt_hide_hcaptcha_for_forms_and_more_menus', 11);
Where do I put this code?