How to Hide the "جدید ترین های المنتور پلاس" Dashboard Widget

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

	//Remove the "جدید ترین های المنتور پلاس" widget.
	remove_meta_box('dashboard_custom_feed', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_parsi_elementor_plus_dashboard_widgets', 20);

Where do I put this code?