How to Hide the "Slick Post" Admin Menu

function plt_hide_slick_post_menus() {
	//Hide the "Settings → Slick Post" menu.
	remove_submenu_page('options-general.php', 'slick_post');
}

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

Where do I put this code?