How to Hide the "Add Page Specific Scripts" Meta Box

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

	//Hide the "Add Page Specific Scripts" meta box.
	remove_meta_box('add_script', $screen->id, 'normal');
}

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

Where do I put this code?