Remove ‘Theme Options’ Option Tree WordPress

This can be removed using remove_submenu_page function. Put following codes in your functions.php

function remove_ot_menu () {
    remove_submenu_page( 'themes.php', 'ot-theme-options' );
}
add_action( 'admin_init', 'remove_ot_menu' );

Leave a Comment