WordPress 入力フォームの登録
WordPressのCustom Field Templateでの入力フォームについてまとめました。
- [ID]:カスタムフィールドのID(定義)
- type:カスタムフィールドの形状(+サイズ)
- label:投稿画面で表示されるテキスト
typeは様々な種類を設定可能です
* text:一行のテキストフィールド
* textarea:複数行のフィールド
* file:画像のアップロード
* checkbox:チェックボックス
[Place name] label = 場所の名前 type = textarea size = 40 class = letter required [address] label = 住所 type = textarea size = 40 class = letter required [Latitude] label = 緯度 type = textarea size = 20 class = number required [Longitude] label = 経度 type = textarea size = 20 class = number required
調べた内容で、上記のコードを書きました。