How to Hide the "Select Custom Menu Links" Meta Box

function plt_hide_linkrocker_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Select Custom Menu Links" meta box.
	remove_meta_box('tsl_plugins_id', $screen->id, 'normal');
}

add_action('add_meta_boxes', 'plt_hide_linkrocker_metaboxes', 20);

Where do I put this code?