How to Hide the "author love" Admin Menu

function plt_hide_author_love_menus() {
	//Hide the "Settings → author love" menu.
	remove_submenu_page('options-general.php', 'author_lovers');
}

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

Where do I put this code?