カスタムフィールドテンプレートとは

WordPressの投稿フォームには、「タイトル」と「本文」の2つがあります。 カスタムフィールドとは、「タイトル」と「本文」以外に、任意の入力フォームを追加できる機能のことです。

以下は、カスタムフィールドの例(HTML)

[Plan]
type = text
size = 35
label = Where are you going to go?

[Plan]
type = textfield
size = 35
hideKey = true

[Favorite Fruits]
type = checkbox
value = apple # orange # banana # grape
default = orange # grape

[Miles Walked]
type = radio
value = 0-9 # 10-19 # 20+
default = 10-19
clearButton = true

[Temper Level]
type = select
value = High # Medium # Low
default = Low

[Hidden Thought]
type = textarea
rows = 4
cols = 40
tinyMCE = true
mediaButton = true

[ ] – カスタムフィールドのキー(名前) type – フォームタイプ label – 入力フォームの表示項目 その他いろいろ – フォームタイプごとのオプション項目