How to disable the “Post Lock/Edit Lock”?
As an addition to @birgire answer… Findings register_post_type() allows to register a post type support, which can as well be done later on using add_post_type_support(). And that can get checked against even later using the all mighty post_type_supports( $cpt, $feat ). A general mini plugin that adds a new feature Now the following (mu-)plugin checks … Read more