-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.php
53 lines (45 loc) · 1.62 KB
/
meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="my_meta_control">
<div id="campo_meta">
<label>Data</label>
<p>
<input type="text" name="_my_meta[ag_data]" value="<?php if(!empty($meta['ag_data'])) echo $meta['ag_data']; ?>"/>
<span>Adicione a data da atividade</span>
</p>
</div>
<div id="campo_meta">
<label>Endereço</label>
<p>
<input type="text" name="_my_meta[ag_endereco]" value="<?php if(!empty($meta['ag_endereco'])) echo $meta['ag_endereco']; ?>"/>
<span>Adicione o endereço da atividade</span>
</p>
</div>
<div id="campo_meta">
<label>Horário</label>
<p>
<input type="text" name="_my_meta[ag_hora]" value="<?php if(!empty($meta['ag_hora'])) echo $meta['ag_hora']; ?>"/>
<span>Horário do evento</span>
</p>
</div>
<div id="campo_meta">
<label>Quanto?</label>
<p>
<input type="text" name="_my_meta[ag_quanto]" value="<?php if(!empty($meta['ag_quanto'])) echo $meta['ag_quanto']; ?>"/>
<span>Preço do ingresso</span>
</p>
</div>
<div id="campo_meta">
<label>Descrição</label>
<p>
<textarea name="_my_meta[ag_description]" rows="3"><?php if(!empty($meta['ag_description'])) echo $meta['ag_description']; ?></textarea>
<span>Descreva em poucas palavras o que é a atividade</span>
</p>
</div>
<div id="campo_meta">
<label>Classificação</label>
<p>
<input type="text" name="_my_meta[ag_idade]" value="<?php if(!empty($meta['ag_idade'])) echo $meta['ag_idade']; ?>"/>
<span>Idade mínima permitida. Use apenas números</span>
</p>
</div>
<div id="hack-meta"></div>
</div>