How to Hide the "Sticky Header Menu by C2tw" Admin Menu

function plt_hide_simple_sticky_header_menu_menus() {
	//Hide the "Sticky Header Menu by C2tw" menu.
	remove_menu_page('simple-sticky-header-menu/simple-sticky-header-menu.php');
}

add_action('admin_menu', 'plt_hide_simple_sticky_header_menu_menus', 11);

Where do I put this code?