How to Hide the "TABLEON" Admin Menu

function plt_hide_posts_table_filterable_menus() {
	//Hide the "TABLEON" menu.
	remove_menu_page('tableon');
}

add_action('admin_menu', 'plt_hide_posts_table_filterable_menus', 100);

Where do I put this code?