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