forked from gabinetedigital/wp-govescuta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-govescuta-custom_metabox.php
98 lines (89 loc) · 2.19 KB
/
wp-govescuta-custom_metabox.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
global $meta_boxes_govescuta;
$prefix = 'wp_govescuta_';
$meta_boxes_govescuta = array();
$meta_boxes_govescuta[] = array(
'id' => $prefix.'info_geral',
'title' => 'Informações Gerais',
'pages' => array('audiencia_govesc'),
'context'=> 'normal',
'priority'=> 'high',
'fields' => array(
array(
'name' => 'Audiência Ativa',
'id' => $prefix . 'ativa',
'type' => 'radio',
'options' => array(
's' => 'Sim',
'n' => 'Não'
),
'std' => 'n'
),
array(
'name' => 'Imagem da audiência',
'id' => $prefix . 'imagem_govesc',
'type' => 'image'
),
array(
'name' => 'Mais detalhes sobre a audiência',
'id' => $prefix . 'detalhes_govesc',
'type' => 'wysiwyg'
),
array(
'name' => 'Quando acontece',
'id' => $prefix . 'data_govesc',
'desc' => 'Data da audiência do Governo Escuta.',
'type' => 'datetime'
),
array(
'name' => 'Embed',
'id' => $prefix . 'video_embed',
'desc' => 'Link do stream do video ao vivo.',
'type' => 'text'
),
array(
'name' => 'Audiência visivel',
'id' => $prefix . 'visivel',
'type' => 'radio',
'options' => array(
's' => 'Sim',
'n' => 'Não'
),
'std' => 'n'
),
array(
'name' => 'Vídeo',
'id' => $prefix . 'video',
'desc' => 'Id do vídeo.',
'type' => 'text'
)
)
);
$meta_boxes_govescuta[] = array(
'id' => $prefix.'hash_tag_audiencia',
'title' => 'Hashtags',
'pages' => array('audiencia_govesc'),
'context'=> 'normal',
'priority'=> 'high',
'fields' => array(
array(
'name' => 'Termo',
'id' => $prefix . 'hashtags_audiencia',
'type' => 'text',
'clone' => true
)
)
);
function wp_govescuta_register_meta_boxes()
{
global $meta_boxes_govescuta;
if ( class_exists( 'RW_Meta_Box' ) )
{
foreach ( $meta_boxes_govescuta as $meta_box )
{
new RW_Meta_Box( $meta_box );
}
}
}
add_action('admin_init', 'wp_govescuta_register_meta_boxes' );
?>