WordPressで不動産が使うデーターを載せるテンプレ

Template Content

[rent]
//label = 賃料(必須)
type = textfield
size = 20
class = number required
after = 円

[room_layout]
//label = 間取り(必須)
type = radio
value = 1R # 1K # 1DK # 1LDK # 2K # 2DK # 2LDK # 3K # 3DK # 3LDK # 4K # 4DK # 4LDK
class = required

[square_meters]
//label = 専有面積(必須)
type = textfield
size = 20
class = number required
after = m²

[floor type]
type = select
value = 和式 # 様式
default = 様式

[build year]
type = radio
value = 新築 # 3年以内 # 5年以内 # 10年以内 # 15年以内 # 指定なし
//label = 築年数
default = 指定なし

[walk distance]
type = radio
value = 5分以内 # 10分以内 # 15分以内 # 指定なし
default = 指定なし

[room place]
type = checkbox
value = 1階のみ # 2階以上のみ # 南向き # 角部屋 # 最上階

[others]
type = checkbox
value = アイコン # バス・トイレ別 # 追い焚き機能あり # 洗濯機置場あり # ペット可・相談 # 楽器可・相談 # 女性限定 # フリーレント
default = アイコン # バス・トイレ別 # 洗濯機置場あり

Format content

<style type="text/css">
<!--
table#home {
  width: 100%;
  border: 1px #E0E0E2 solid;
  border-spacing: 0;
}

table#home th {
  width: 100px;
  padding: 5px;
  border: #E0E0E2 solid;
  border-width: 0 0 1px 1px;
  background: #F5F5F5;
  line-height: 120%;
  text-align: center;
}
table#home td {
  width: 200px;
  padding: 5px;
  border: 1px #E0E0E2 solid;
  border-width: 0 0 1px 1px;
  text-align: right;
}
-->
</style>
<table id="home">
  <tr>
    <th>賃料</th><td colspan="3">[rent]</td>
  </tr>
  <tr>
    <th>間取</th><td>[room_layout]</td>
    <th>専有面積</th><td>[square_meters]</td>
  </tr>
  <tr>
    <th>床</th><td>[floor type]</td>
    <th>築年数</th><td>[build year]</td>
  </tr>
  <tr>
    <th>最寄駅徒歩分</th><td>[walk distance]</td>
    <th>部屋の位置</th><td>[room place]</td>
  </tr>
    <th>設備</th><td colspan="3">[others]</td>
</table>