How to enable parent-child relationships and post attribute admin widget for posts

The parameter that controls post-type hierarchy is called 'hierarchical', and is set when the post type is registered via register_post_type(). WordPress core registers the 'post' post-type with 'hierarchical' => false.

To override this setting, refer to this question.