Support » Plugins » [Plugin: My Page Order] How do I move this to the Settings admin menu

Viewing 2 replies - 1 through 2 (of 2 total)
  • Right now you have to make a couple modifications to the plugin, I’ll add it to my todo list to make it a configurable option since I think most people like having it there in the Page menu.

    First modification, replace the mypageorder_getTarget() function with this:

    function mypageorder_getTarget() {
    return "";
    }

    Secondly, replace mypageorder_menu() function with this:

    function mypageorder_menu()
    {
    add_options_page( __('My Page Order', 'mypageorder'), __('My Page Order', 'mypageorder'), 5, 'mypageorder', 'mypageorder' );
    }
    Thread Starter Pete

    (@perthmetro)

    thanks heaps

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: My Page Order] How do I move this to the Settings admin menu’ is closed to new replies.