How to Hide the "Full Page Blog Designer" Meta Box

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

	//Hide the "Full Page Blog Designer" meta box.
	remove_meta_box('codeies_fpbd_options', $screen->id, 'normal');
}

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

Where do I put this code?