-
Home
-
Tika Doc PDF Indexer
- Tips
How to Hide the "Tika Indexer Settings" Admin Menu
function plt_hide_tika_doc_pdf_indexer_menus() {
//Hide the "Settings → Tika Indexer Settings" menu.
remove_submenu_page('options-general.php', 'tika_doc_pdf_indexer_settings');
}
add_action('admin_menu', 'plt_hide_tika_doc_pdf_indexer_menus', 11);
Where do I put this code?
How to Hide the "File Upload" Meta Box
function plt_hide_tika_doc_pdf_indexer_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "File Upload" meta box.
remove_meta_box('tdpi_file_upload', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_tika_doc_pdf_indexer_metaboxes', 20);