How to Hide the "Page/Post Sale Settings" Meta Box

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

	//Hide the "Page/Post Sale Settings" meta box.
	remove_meta_box('rsdp_ppcl_meta_box', $screen->id, 'side');
}

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

Where do I put this code?