Tips on Customizing WP Githuber MD – WordPress Markdown Editor

How to Hide the "WP Githuber MD" Admin Menu

function plt_hide_wp_githuber_md_menus() {
	//Hide the "Settings → WP Githuber MD" menu.
	remove_submenu_page('options-general.php', 'githuber-md');
}

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

Where do I put this code?

How to Hide WP Githuber MD Meta Boxes

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

	//Hide the "HTML to Markdown" meta box.
	remove_meta_box('html2markdown_meta_box', $screen->id, 'side');
	//Hide the "Enable Markdown" meta box.
	remove_meta_box('markdown_this_post_meta_box', $screen->id, 'side');
}

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