-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
378 lines (268 loc) · 8.4 KB
/
functions.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<?php
require_once 'wrapper/class.redQwrapper.php';
$page = new Page('RedQ', array('type' => 'menu'));
$settings = array();
$settings['Tab One'] = array();
$settings['Tab Two'] = array();
$settings['Tab Three'] = array();
$settings['Tab four'] = array();
$settings['Tab five'] = array();
// Section One
// ------------------------//
// Section One
// ------------------------//
$fields = array();
$fields = array(
array(
'type' => 'heading',
'name' => 'my_heading',
'label' => 'My heading Field',
'desc' => 'I\'m awesome',
),
array(
'type' => 'text',
'name' => 'my_textfield',
'label' => 'My Text Field',
'desc' => 'I\'m awesome',
),
array(
'type' => 'textarea',
'name' => 'my_textarea_1',
'label' => 'My Text Field',
'desc' => 'i\'m really awesome'
),
array(
'type' => 'select',
'name' => 'my_selectbox',
'label' => 'My Text Field',
'options' => array(
'one' => 'One',
'two' => 'Two',
'three' => 'Three',
'four' => 'Four'
)
),
array(
'type' => 'checkbox',
'name' => 'my_checkbox',
'label' => 'My checkbox',
'desc' => 'i\'m really awesome'
),
array(
'type' => 'radio',
'name' => 'my_radio_field',
'label' => 'My Text Field',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
)
),
array(
'type' => 'editor',
'name' => 'my_editor',
'label' => 'My Editor'
),
array(
'type' => 'color',
'name' => 'my_color_field',
'label' => 'choose colour'
),
array(
'type' => 'media',
'name' => 'my_media',
'label' => 'choose colour'
),
array(
'type' => 'media',
'name' => 'my_media_2',
'label' => 'my media 2'
),
array(
'type' => 'media',
'name' => 'my_media_20',
'label' => 'my media'
),
array(
'type' => 'repeat_text',
'name' => 'my_repeat_200',
'label' => 'my media'
)
);
$settings['Tab One']['fields'] = $fields;
$fields = array();
$fields = array(
array(
'type' => 'text',
'name' => 'my_textfield_8',
'label' => 'My Text Field'
),
array(
'type' => 'text',
'name' => 'my_textfield_9',
'label' => 'My Text Field'
)
);
$settings['Tab Two']['fields'] = $fields;
$fields = array();
$fields = array(
array(
'type' => 'text',
'name' => 'my_textfield_10',
'label' => 'My Text Field',
'desc' => 'by shishir vai'
),
array(
'type' => 'page',
'name' => 'my_page',
'label' => 'My Text Field'
)
);
$settings['Tab Three']['fields'] = $fields;
$fields = array();
$fields = array(
array(
'type' => 'text',
'name' => 'my_textfield_10',
'label' => 'My Text Field',
'desc' => 'by shishir vai'
),
array(
'type' => 'page',
'name' => 'my_page',
'label' => 'My Text Field'
),
array(
'type' => 'category',
'name' => 'my_category',
'label' => 'My Category Field'
)
);
$settings['Tab five']['fields'] = $fields;
new TSettingsApi( $page , $settings );
function output_about_text() {
echo '<h1>Exploring wp settings api</h1>';
echo '<p>wow , nice hooking </p>';
}
add_action('theader','output_about_text');
// global $tada;
// var_dump($tada);
//Add the Meta Box
function add_custom_meta_box() {
add_meta_box(
'custom_meta_box', // $id
'Tareq', // $title
'show_custom_meta_box', // $callback
'post', // $page
'normal', // $context
'high'); // $priority
}
add_action('add_meta_boxes', 'add_custom_meta_box');
// The Callback
function show_custom_meta_box() {
global $custom_meta_fields, $post;
echo '<p>
Lorem ipsum dolor sit amet, quo clita affert torquatos ex, nam et illud expetenda. Quas cetero scribentur ea mei, sea probo laudem eripuit in. Tota lobortis conceptam ut his. Regione inermis voluptaria his ea, agam diceret quo eu, blandit moderatius interesset ei mei. Cu diam legendos invenire eum.
</p>
<p>
Verear urbanitas eloquentiam et nam. Modus commune omittantur eam eu, ut sale aperiam quaestio sit, sit at tibique percipit. Ne his doming eripuit. Mei eu saperet percipitur. Mel quod integre ea, quando pertinax eu mel, elit explicari necessitatibus ne cum.
</p>
<p>
Ut vis nonumy accusata temporibus, ei sed oporteat legendos scribentur, cu magna propriae vim. Ex eum partem omnesque. Errem vocent complectitur cum ei. Cu vitae deterruisset vis. Id est elitr aperiri. Vim oblique eripuit ea, ex sed graeco feugiat legimus.
</p>
<p>
Cum ex tota veniam nominavi. Ocurreret quaerendum nam et. Tollit molestiae ea sed, duo assum facete ut. Vim ex augue interesset repudiandae, in est eleifend omittantur vituperatoribus.
</p>
<p>
At illum abhorreant eum. In ubique fuisset posidonium vis, duo et illum deseruisse, has at affert soleat laoreet. Esse integre mei ut. Pro ad amet corpora, alii interpretaris pro ut. Id pro viderer accommodare. Ex cum decore nonumes.
</p>';
}
/**
* Calls the class on the post edit screen.
*/
function call_someClass() {
new someClass();
}
if ( is_admin() ) {
add_action( 'load-post.php', 'call_someClass' );
add_action( 'load-post-new.php', 'call_someClass' );
}
/**
* The Class.
*/
class someClass {
/**
* Hook into the appropriate actions when the class is constructed.
*/
public function __construct() {
add_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );
add_action( 'save_post', array( $this, 'save' ) );
}
/**
* Adds the meta box container.
*/
public function add_meta_box( $post_type ) {
$post_types = array('post', 'page'); //limit meta box to certain post types
if ( in_array( $post_type, $post_types )) {
add_meta_box(
'some_meta_box_name'
,__( 'Some Meta Box Headline', 'myplugin_textdomain' )
,array( $this, 'render_meta_box_content' )
,$post_type
,'advanced'
,'high'
);
}
}
/**
* Save the meta when the post is saved.
*
* @param int $post_id The ID of the post being saved.
*/
public function save( $post_id ) {
/*
* We need to verify this came from the our screen and with proper authorization,
* because save_post can be triggered at other times.
*/
// Check if our nonce is set.
if ( ! isset( $_POST['myplugin_inner_custom_box_nonce'] ) )
return $post_id;
$nonce = $_POST['myplugin_inner_custom_box_nonce'];
// Verify that the nonce is valid.
if ( ! wp_verify_nonce( $nonce, 'myplugin_inner_custom_box' ) )
return $post_id;
// If this is an autosave, our form has not been submitted,
// so we don't want to do anything.
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return $post_id;
// Check the user's permissions.
if ( 'page' == $_POST['post_type'] ) {
if ( ! current_user_can( 'edit_page', $post_id ) )
return $post_id;
} else {
if ( ! current_user_can( 'edit_post', $post_id ) )
return $post_id;
}
/* OK, its safe for us to save the data now. */
// Sanitize the user input.
$mydata = sanitize_text_field( $_POST['myplugin_new_field'] );
// Update the meta field.
update_post_meta( $post_id, '_my_meta_value_key', $mydata );
}
/**
* Render Meta Box content.
*
* @param WP_Post $post The post object.
*/
public function render_meta_box_content( $post ) {
// Add an nonce field so we can check for it later.
wp_nonce_field( 'myplugin_inner_custom_box', 'myplugin_inner_custom_box_nonce' );
// Use get_post_meta to retrieve an existing value from the database.
$value = get_post_meta( $post->ID, '_my_meta_value_key', true );
// Display the form, using the current value.
echo '<label for="myplugin_new_field">';
_e( 'Description for this field', 'myplugin_textdomain' );
echo '</label> ';
echo '<input type="text" id="myplugin_new_field" name="myplugin_new_field"';
echo ' value="' . esc_attr( $value ) . '" size="25" />';
}
}