I'm working with custom post types. post type is created using types plugin. Custom post type name is partners
that has title , featured image and a custom field description this is how i am able to fetch image and title
<?php
$args=array('post_type' => 'partners');
$query= new WP_Query($args);
while ($query-> have_posts() ) : $query->the_post()?>
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-12">
<?php the_title;?>
<?php the_post_thumbnail( 'full', array( 'class' => 'innerimages')
);?>
</div>
<?php endwhile;?>
now how do i print that custom field content after title ?please help