How to Hide the "FSM Custom Featured Image Caption" Admin Menu

function plt_hide_fsm_custom_featured_image_caption_menus() {
	//Hide the "Settings → FSM Custom Featured Image Caption" menu.
	remove_submenu_page('options-general.php', 'fsm-custom-featured-image-caption');
}

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

Where do I put this code?