How to Hide WP Dispatcher - Secure Download Links Admin Menus

function plt_hide_wp_dispatcher_menus() {
	//Hide the "WP Dispatcher" menu.
	remove_menu_page('wp_dispatcher');
	//Hide the "WP Dispatcher → WP Dispatcher" menu.
	remove_submenu_page('wp_dispatcher', 'wp_dispatcher');
	//Hide the "WP Dispatcher → Add New" menu.
	remove_submenu_page('wp_dispatcher', 'wp_dispatcher_new');
}

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

Where do I put this code?