Bring page from sub menu to admin menu in option tree
Add this to your functions.php file – add_filter(‘ot_theme_options_parent_slug’, ‘__return_false’); Basically it’s a filter (ot_theme_options_parent_slug) added by the plugin author and the usage is simple like I provided here. You may consider looking at this page for all available filters for “Option-Tree” plugin – https://github.com/valendesigns/option-tree/blob/master/includes/ot-functions-admin.php By adding this filter, you can pass any function and adjust … Read more