/*
If you want to sort the order you need to modify the functions file using the code below. This allows you to set an order number of each post. Higher numbers show first.
add_action( 'admin_init', 'your_custom_post_order_fn' );
function your_custom_post_order_fn()
{
add_post_type_support( 'post', 'page-attributes' );
}
*/ ?>