wordpressのカスタムフィールドテンプレートの使い方(基礎)

入力フォームの登録する際には「テンプレートタイトル」と「テンプレートコンテンツ」に入力する。 [ID] :カスタムフィールドのID type :カスタムフィールドの種類(+サイズ) label :投稿画面で表示されるテキスト(※全角などの注意事項) の3行で記述される。

[cft] and [cftsearch] Shortcode Formatを記述する際にはHTMLをつかう

<table class="cft">

<tr>
<th>Plan</th><td colspan="3">[Plan]</td>
</tr>
<tr>
<th>Favorite Fruits</th><td>[Favorite Fruits]</td>
<th>Miles Walked</th><td>[Miles Walked]</td>
</tr>
<tr>
<th>Temper Level</th><td colspan="3">[Temper Level]</td>
</tr>
<tr>
<th>Hidden Thought</th><td colspan="3">[Hidden Thought]</td>
</tr>

</table>

PHPを有効にすればHTMLに組み込むことも可能。