This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme-options.php
301 lines (289 loc) · 9.83 KB
/
theme-options.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<?php
/**
* Initialize the custom theme options.
*/
add_action( 'init', 'custom_theme_options' );
/**
* Build the custom settings & update OptionTree.
*/
function custom_theme_options() {
/* OptionTree is not loaded yet, or this is not an admin request */
if ( ! function_exists( 'ot_settings_id' ) || ! is_admin() )
return false;
/**
* Get a copy of the saved settings array.
*/
$saved_settings = get_option( ot_settings_id(), array() );
/**
* Custom settings array that will eventually be
* passes to the OptionTree Settings API Class.
*/
$custom_settings = array(
'contextual_help' => array(
'sidebar' => ''
),
'sections' => array(
array(
'id' => 'general',
'title' => __( 'General', 'jinda' )
),
array(
'id' => 'advertisements',
'title' => __( 'Advertisements', 'jinda' )
),
array(
'id' => 'footer',
'title' => __( 'Footer', 'jinda' )
)
),
'settings' => array(
array(
'id' => 'website_logo',
'label' => __( 'Website logo', 'jinda' ),
'desc' => __( 'recommended size: 200x80px', 'jinda' ),
'std' => '',
'type' => 'upload',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'description',
'label' => __( 'Description', 'jinda' ),
'desc' => __( 'this field for website meta description tag.', 'jinda' ),
'std' => '',
'type' => 'text',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'keywords',
'label' => __( 'Keywords', 'jinda' ),
'desc' => __( 'this field for website meta keywords tag.', 'jinda' ),
'std' => '',
'type' => 'text',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'custom_html',
'label' => __( 'Custom HTML', 'jinda' ),
'desc' => __( 'place your custom HTML tag here<br />
like a popup window from external service.', 'jinda' ),
'std' => '',
'type' => 'textarea-simple',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'custom_css',
'label' => __( 'Custom CSS', 'jinda' ),
'desc' => __( 'place your custom CSS here.<br /><br />
** place without <u>style</u> tag **', 'jinda' ),
'std' => '',
'type' => 'css',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'custom_scripts',
'label' => __( 'Custom Javascripts', 'jinda' ),
'desc' => __( 'Place your external javascript here<br />
like Google Analytics, Facebook Javascript or sth..<br /><br />
** place without <u>script</u> tag **', 'jinda' ),
'std' => '',
'type' => 'javascript',
'section' => 'general',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'banner_top',
'label' => __( 'Banner Top', 'jinda' ),
'desc' => __( 'Place your banner script here <br />
<strong>Recommended size: 468x60px</strong><br /><br />
<small>ไม่ต้องสนใจว่ามันจะฟ้อง error อะไร<br /> ถ้าวางแล้วโฆษณาขึ้นก็โอเค</small>', 'jinda' ),
'std' => '',
'type' => 'javascript',
'section' => 'advertisements',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'banner_single',
'label' => __( 'Banner Single', 'jinda' ),
'desc' => __( 'Place your banner script here <br />
<strong>Recommended size: 300x250</strong><br /><br />
<small>ไม่ต้องสนใจว่ามันจะฟ้อง error อะไร<br /> ถ้าวางแล้วโฆษณาขึ้นก็โอเค</small>', 'jinda' ),
'std' => '',
'type' => 'javascript',
'section' => 'advertisements',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'banner_loop',
'label' => __( 'Banner Loop', 'jinda' ),
'desc' => __( 'เมื่อครบ 3 posts จะแสดง advertise banner 1 ครั้ง<br />
<strong>recommended size: 468x60px</strong><br /><br />
<small>
ไม่ต้องสนใจว่ามัน error อะไร<br />
ถ้า banner ขึ้นถือว่าโอเค
</small>', 'jinda' ),
'std' => '',
'type' => 'javascript',
'section' => 'advertisements',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'footer_copyright',
'label' => __( 'Footer Copyright', 'jinda' ),
'desc' => __( 'Your copyright goes here.', 'jinda' ),
'std' => '',
'type' => 'textarea-simple',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'facebook_link',
'label' => __( 'Facebook Link', 'jinda' ),
'desc' => '',
'std' => 'https://www.facebook.com/pages/Techr',
'type' => 'text',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'twitter_link',
'label' => __( 'Twitter Link', 'jinda' ),
'desc' => '',
'std' => 'https://twitter.com/TechrThailand',
'type' => 'text',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'google_plus_link',
'label' => __( 'Google Plus Link', 'jinda' ),
'desc' => '',
'std' => 'https://plus.google.com/105874781308314969682',
'type' => 'text',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'youtube_link',
'label' => __( 'Youtube Link', 'jinda' ),
'desc' => '',
'std' => 'https://www.youtube.com/channel/UCijPSEL2EQa-KZBOtSwE0MQ',
'type' => 'text',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
),
array(
'id' => 'footer_credit',
'label' => __( 'Footer Credit', 'jinda' ),
'desc' => __( 'Credit ของผู้พัฒนา', 'jinda' ),
'std' => '',
'type' => 'textarea',
'section' => 'footer',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'min_max_step'=> '',
'class' => '',
'condition' => '',
'operator' => 'and'
)
)
);
/* allow settings to be filtered before saving */
$custom_settings = apply_filters( ot_settings_id() . '_args', $custom_settings );
/* settings are not the same update the DB */
if ( $saved_settings !== $custom_settings ) {
update_option( ot_settings_id(), $custom_settings );
}
/* Lets OptionTree know the UI Builder is being overridden */
global $ot_has_custom_theme_options;
$ot_has_custom_theme_options = true;
}