Tips on Customizing MaxUploader – Increase Media Upload File Size | Increase Execution Time

How to Hide the "MaxUploader" Admin Menu

function plt_hide_wp_maximum_upload_file_size_menus() {
	//Hide the "Media → MaxUploader" menu.
	remove_submenu_page('upload.php', 'max_uploader');
}

add_action('admin_menu', 'plt_hide_wp_maximum_upload_file_size_menus', 11);

Where do I put this code?

How to Hide the "CodePopular Latest News from Blog" Dashboard Widget

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

	//Remove the "CodePopular Latest News from Blog" widget.
	remove_meta_box('codepopular_latest_news_dashboard_widget', 'dashboard', 'side');
}

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