How to Hide the "Messaging" Admin Menu

function plt_hide_joy_of_text_menus() {
	//Hide the "Messaging" menu.
	remove_menu_page('jot-plugin');
}

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

Where do I put this code?