wp_query a single custom post type?

'post_id' is not a valid page/post parameter for WP_Query(). Try using p or post__in instead:

array(
    'p' => 700
)

or

array(
    'post__in' => array(
        700
    )
)

tech