CodeCanyon

Reorder: Reorder Posts and Pages

is there way to have the Reorder menu only appear on some post types and not others? I have a site right now with five custom post types, and only want one of them to be re-orderable. Is there a way to make this configurable or something?

Yes, you can add something like the following filter to functions.php or within another plugin:

add_filter(‘reorder_exclude’, ‘excluded_posts_list’);

function excluded_posts_list() { 
    return array('post', 'movie'); 
}
by
by
by
by
by