記事のタイトルを入れたいとき
<?php echo types_render_field('ここにフィールドのスラッグ', array('alt' => get_the_title() , 'width'=>'500', 'height'=>'620', 'proportional'=>'false')); ?>
カスタムフィールドの何かを入れたいとき
<?php $title = types_render_field('ここにフィールドのスラッグ', array()); echo types_render_field('ここにフィールドのスラッグ', array('alt' => get_the_title() , 'width'=>'500', 'height'=>'620', 'proportional'=>'false')); ?>