How to Hide the "Sticky Social" Admin Menu

function plt_hide_wp_sticky_social_menus() {
	//Hide the "Settings → Sticky Social" menu.
	remove_submenu_page('options-general.php', 'wp-sticky-social');
}

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

Where do I put this code?