-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.php
892 lines (757 loc) · 28.6 KB
/
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
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
<?php
/**
* A unique identifier is defined to store the options in the database and reference them from the theme.
* By default it uses the theme name, in lowercase and without spaces, but this can be changed if needed.
* If the identifier changes, it'll appear as if the options have been reset.
*/
function optionsframework_option_name() {
// 从样式表获取主题名称
$themename = wp_get_theme();
$themename = preg_replace("/\W/", "_", strtolower($themename) );
$optionsframework_settings = get_option( 'optionsframework' );
$optionsframework_settings['id'] = $themename;
update_option( 'optionsframework', $optionsframework_settings );
}
/**
* Defines an array of options that will be used to generate the settings page and be saved in the database.
* When creating the 'id' fields, make sure to use all lowercase and no spaces.
*
* If you are making your theme translatable, you should replace 'options_framework_theme'
* with the actual text domain for your theme. 请阅读:
* http://codex.wordpress.org/Function_Reference/load_theme_textdomain
*/
function optionsframework_options() {
// 测试数据
$test_array = array(
'one' => __('1', 'options_framework_theme'),
'two' => __('2', 'options_framework_theme'),
'three' => __('3', 'options_framework_theme'),
'four' => __('4', 'options_framework_theme'),
'five' => __('5', 'options_framework_theme'),
'six' => __('6', 'options_framework_theme'),
'seven' => __('7', 'options_framework_theme')
);
// 复选框数组
$multicheck_array = array(
'one' => __('法国吐司', 'options_framework_theme'),
'two' => __('薄煎饼', 'options_framework_theme'),
'three' => __('煎蛋', 'options_framework_theme'),
'four' => __('绉绸', 'options_framework_theme'),
'five' => __('感化饼干', 'options_framework_theme')
);
// 复选框默认值
$multicheck_defaults = array(
'one' => '1',
'five' => '1'
);
// 背景默认值
$background_defaults = array(
'color' => '',
'image' => '',
'repeat' => 'repeat',
'position' => 'top center',
'attachment'=>'scroll' );
// 版式默认值
$typography_defaults = array(
'size' => '15px',
'face' => 'georgia',
'style' => 'bold',
'color' => '#bada55' );
// 版式设置选项
$typography_options = array(
'sizes' => array( '6','12','14','16','20' ),
'faces' => array( 'Helvetica Neue' => 'Helvetica Neue','Arial' => 'Arial' ),
'styles' => array( 'normal' => '普通','bold' => '粗体' ),
'color' => false
);
// 将所有分类(categories)加入数组
$options_categories = array();
$options_categories_obj = get_categories();
foreach ($options_categories_obj as $category) {
$options_categories[$category->cat_ID] = $category->cat_name;
}
// 将所有标签(tags)加入数组
$options_tags = array();
$options_tags_obj = get_tags();
foreach ( $options_tags_obj as $tag ) {
$options_tags[$tag->term_id] = $tag->name;
}
// 将所有页面(pages)加入数组
$options_pages = array();
$options_pages_obj = get_pages('sort_column=post_parent,menu_order');
$options_pages[''] = 'Select a page:';
foreach ($options_pages_obj as $page) {
$options_pages[$page->ID] = $page->post_title;
}
// 如果使用图片单选按钮, define a directory path
$imagepath = get_template_directory_uri() . '/images/';
$options = array();
//基本设置
$options[] = array(
'name' => __('基本设置', 'options_framework_theme'),
'type' => 'heading');
$options[] = array(
'name' => __("主题风格", 'akina'),
'id' => 'theme_skin',
'std' => "#FE9600",
'desc' => __('自定义主题颜色', ''),
'type' => "color"
);
$options[] = array(
'name' => __('自定义关键词和描述', 'options_framework_theme'),
'desc' => __('开启之后可自定义填写关键词和描述', 'options_framework_theme'),
'id' => 'akina_meta',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('网站关键词', 'options_framework_theme'),
'desc' => __('各关键字间用半角逗号","分割,数量在5个以内最佳。', 'options_framework_theme'),
'id' => 'akina_meta_keywords',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('网站描述', 'options_framework_theme'),
'desc' => __('用简洁的文字描述本站点,字数建议在120个字以内。', 'options_framework_theme'),
'id' => 'akina_meta_description',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('logo', 'options_framework_theme'),
'desc' => __('最佳高度尺寸40px。', 'options_framework_theme'),
'id' => 'akina_logo',
'type' => 'upload');
$options[] = array(
'name' => __('Favicon', 'options_framework_theme'),
'desc' => __('填写url地址', 'options_framework_theme'),
'id' => 'favicon_link',
'std' => '/wp-content/themes/Scilper/images/favicon.ico',
'type' => 'text');
$options[] = array(
'name' => __('展开导航菜单', 'options_framework_theme'),
'desc' => __('勾选开启,默认收缩', 'options_framework_theme'),
'id' => 'shownav',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('头部装饰图', 'options_framework_theme'),
'desc' => __('默认开启,勾选关闭,显示在文章页面,独立页面以及分类页', 'options_framework_theme'),
'id' => 'patternimg',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('搜索按钮', 'akina'),
'id' => 'top_search',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('首页文章风格', 'akina'),
'id' => 'post_list_style',
'std' => "standard",
'type' => "radio",
'options' => array(
'standard' => __('标准', ''),
'imageflow' => __('图文', '')
));
$options[] = array(
'name' => __('首页文章特色图(仅对标准风格生效)', 'akina'),
'id' => 'list_type',
'std' => "round",
'type' => "radio",
'options' => array(
'round' => __('圆形', ''),
'square' => __('方形', '')
));
$options[] = array(
'name' => __('评论收缩', 'akina'),
'id' => 'toggle-menu',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('分页模式', 'akina'),
'id' => 'pagenav_style',
'std' => "ajax",
'type' => "radio",
'options' => array(
'ajax' => __('ajax加载', ''),
'np' => __('上一页和下一页', '')
));
$options[] = array(
'name' => __('博主描述', 'options_framework_theme'),
'desc' => __('一段自我描述的话', 'options_framework_theme'),
'id' => 'admin_des',
'std' => '我们的征途是是星辰大海',
'type' => 'textarea');
$options[] = array(
'name' => __('页脚信息', 'options_framework_theme'),
'desc' => __('页脚说明文字,支持HTML代码', 'options_framework_theme'),
'id' => 'footer_info',
'std' => '© 2018',
'type' => 'textarea');
$options[] = array(
'name' => __('页脚显示页面加载时间', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启', 'options_framework_theme'),
'id' => 'load-timeshow',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('页脚显示网站运行时间', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启', 'options_framework_theme'),
'id' => 'web_runtime',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('建站日期', 'options_framework_theme'),
'desc' => __('填写建站时间以计算运行时间,格式(半角):01/21/2017 17:00:00', 'options_framework_theme'),
'id' => 'web_buildtime',
'std' => '01/21/2017 17:00:00',
'type' => 'text');
$options[] = array(
'name' => __('站长统计', 'options_framework_theme'),
'desc' => __('填写统计代码,将被隐藏,如需要在下方填写链接地址', 'options_framework_theme'),
'id' => 'site_statistics',
'std' => '',
'type' => 'textarea');
$options[] = array(
'name' => __('站长统计后台地址', 'options_framework_theme'),
'desc' => __('填写查看统计数据的链接', 'options_framework_theme'),
'id' => 'site_statistics_link',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('网站地图地址', 'options_framework_theme'),
'desc' => __('Sitemap生成的地图链接', 'options_framework_theme'),
'id' => 'site_map_link',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('ICP备案号', 'options_framework_theme'),
'desc' => __('填写已备案成功的ICP号', 'options_framework_theme'),
'id' => 'copyrightlink',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('自定义CSS样式', 'options_framework_theme'),
'desc' => __('直接填写CSS代码,不需要写style标签', 'options_framework_theme'),
'id' => 'site_custom_style',
'std' => '',
'type' => 'textarea');
//第一屏
$options[] = array(
'name' => __('第一屏', 'options_framework_theme'),
'type' => 'heading');
$options[] = array(
'name' => __('总开关', 'options_framework_theme'),
'desc' => __('默认开启,勾选全部关闭', 'options_framework_theme'),
'id' => 'head_focus',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('开启Hitokoto(一言)', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启,显示主页info区域(10分钟/刷新可更换一次)', 'options_framework_theme'),
'id' => 'scilper_hitokoto',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('社交信息', 'options_framework_theme'),
'desc' => __('默认开启,勾选关闭,显示头像、签名、SNS', 'options_framework_theme'),
'id' => 'focus_infos',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('全屏显示', 'options_framework_theme'),
'desc' => __('默认开启,勾选关闭', 'options_framework_theme'),
'id' => 'focus_height',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('开启视频', 'options_framework_theme'),
'desc' => __('勾选开启', 'options_framework_theme'),
'id' => 'focus_amv',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Live', 'options_framework_theme'),
'desc' => __('勾选开启,视频自动续播,需要开启Pjax功能', 'options_framework_theme'),
'id' => 'focus_mvlive',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('视频地址', 'options_framework_theme'),
'desc' => __('视频的来源地址,该地址拼接下面的视频名,地址尾部不需要加斜杠', 'options_framework_theme'),
'id' => 'amv_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('视频名称', 'options_framework_theme'),
'desc' => __('abc.mp4 ,只需要填写视频名称 abc 即可,多个用英文逗号隔开如 abc,efg ,无需在意顺序,因为加载是随机的抽取的 ', 'options_framework_theme'),
'id' => 'amv_title',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('个人头像', 'options_framework_theme'),
'desc' => __('最佳高度尺寸130px。', 'options_framework_theme'),
'id' => 'focus_logo',
'type' => 'upload');
$options[] = array(
'name' => __('背景图', 'options_framework_theme'),
'desc' => __('最佳尺寸1920*1080', 'options_framework_theme'),
'id' => 'focus_img_1',
'type' => 'upload');
$options[] = array(
'name' => __('背景图 - 2', 'options_framework_theme'),
'desc' => __('可选,最佳尺寸1920*1080,将被随机显示', 'options_framework_theme'),
'id' => 'focus_img_2',
'type' => 'upload');
$options[] = array(
'name' => __('背景图 - 3', 'options_framework_theme'),
'desc' => __('可选,最佳尺寸1920*1080,将被随机显示', 'options_framework_theme'),
'id' => 'focus_img_3',
'type' => 'upload');
$options[] = array(
'name' => __('背景图 - 4', 'options_framework_theme'),
'desc' => __('可选,最佳尺寸1920*1080,将被随机显示', 'options_framework_theme'),
'id' => 'focus_img_4',
'type' => 'upload');
$options[] = array(
'name' => __('背景图 - 5', 'options_framework_theme'),
'desc' => __('可选,最佳尺寸1920*1080,将被随机显示', 'options_framework_theme'),
'id' => 'focus_img_5',
'type' => 'upload');
$options[] = array(
'name' => __('背景图滤镜', 'akina'),
'id' => 'focus_img_filter',
'std' => "filter-nothing",
'type' => "radio",
'options' => array(
'filter-nothing' => __('无', ''),
'filter-undertint' => __('浅色', ''),
'filter-dim' => __('暗淡', ''),
'filter-grid' => __('网格', '')
));
$options[] = array(
'name' => __('开启蜂窝背景动效', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启', 'options_framework_theme'),
'id' => 'canvas_nest',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('开启首屏底部动画', 'akina'),
'desc' => __('默认底部没有动画', 'akina'),
'id' => 'focus_canvas_animinte',
'std' => "animinte-nothing",
'type' => "radio",
'options' => array(
'animinte-nothing' => __('没有动画', ''),
'waveloop' => __('波浪动画', ''),
'bubble' => __('气泡动画', '')
));
$options[] = array(
'name' => __('页面顶部显示加载进度或浏览进度', 'akina'),
'desc' => __('默认不需要显示', 'akina'),
'id' => 'progress_type',
'std' => "progress_no",
'type' => "radio",
'options' => array(
'progress_no' => __('不需要', ''),
'loadprogress' => __('加载进度', ''),
'readprogress' => __('浏览进度', '')
));
//文章页
$options[] = array(
'name' => __('文章页', 'options_framework_theme'),
'type' => 'heading');
$options[] = array(
'name' => __('文章导航', 'akina'),
'desc' => __('默认关闭', 'akina'),
'id' => 'post_nav',
'std' => "no",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('文章点赞', 'akina'),
'id' => 'post_like',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('文章分享', 'akina'),
'id' => 'post_share',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('上一篇下一篇', 'akina'),
'id' => 'post_nepre',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('博主信息', 'akina'),
'id' => 'author_profile',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('开启', ''),
'no' => __('关闭', '')
));
$options[] = array(
'name' => __('支付宝打赏', 'options_framework_theme'),
'desc' => __('支付宝二维码', 'options_framework_theme'),
'id' => 'alipay_code',
'type' => 'upload');
$options[] = array(
'name' => __('微信打赏', 'options_framework_theme'),
'desc' => __('微信二维码', 'options_framework_theme'),
'id' => 'wechat_code',
'type' => 'upload');
//社交选项
$options[] = array(
'name' => __('社交网络', 'options_framework_theme'),
'type' => 'heading');
$options[] = array(
'name' => __('微信', 'options_framework_theme'),
'desc' => __('微信二维码', 'options_framework_theme'),
'id' => 'wechat',
'type' => 'upload');
$options[] = array(
'name' => __('新浪微博', 'options_framework_theme'),
'desc' => __('新浪微博地址', 'options_framework_theme'),
'id' => 'sina',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('腾讯QQ', 'options_framework_theme'),
'desc' => __('QQ号码', 'options_framework_theme'),
'id' => 'qq',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('知乎', 'options_framework_theme'),
'desc' => __('知乎地址', 'options_framework_theme'),
'id' => 'zhihu',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('GitHub', 'options_framework_theme'),
'desc' => __('GitHub地址', 'options_framework_theme'),
'id' => 'github',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Lofter', 'options_framework_theme'),
'desc' => __('lofter地址', 'options_framework_theme'),
'id' => 'lofter',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('BiliBili', 'options_framework_theme'),
'desc' => __('B站地址', 'options_framework_theme'),
'id' => 'bili',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('优酷视频', 'options_framework_theme'),
'desc' => __('优酷地址', 'options_framework_theme'),
'id' => 'youku',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('网易云音乐', 'options_framework_theme'),
'desc' => __('网易云音乐地址', 'options_framework_theme'),
'id' => 'wangyiyun',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Twitter', 'options_framework_theme'),
'desc' => __('推特地址', 'options_framework_theme'),
'id' => 'twitter',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Facebook', 'options_framework_theme'),
'desc' => __('脸书地址', 'options_framework_theme'),
'id' => 'facebook',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Google+', 'options_framework_theme'),
'desc' => __('G+地址', 'options_framework_theme'),
'id' => 'googleplus',
'std' => '',
'type' => 'text');
//聚焦图链
$options[] = array(
'name' => __('聚焦信息', 'options_framework_theme'),
'type' => 'heading' );
$options[] = array(
'name' => __('开启公告', 'options_framework_theme'),
'desc' => __('默认不显示,勾选开启', 'options_framework_theme'),
'id' => 'head_notice',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('公告内容', 'options_framework_theme'),
'desc' => __('公告内容,文字超出142个字节将会被滚动显示(移动端无效),一个汉字 = 3字节,一个字母 = 1字节,自己计算吧', 'options_framework_theme'),
'id' => 'notice_title',
'std' => '欢迎来到我的小站',
'type' => 'text');
$options[] = array(
'name' => __('公告内容尾部光标文字', 'options_framework_theme'),
'desc' => __('公告内容尾部光标文字,计入上面公告内容字数内', 'options_framework_theme'),
'id' => 'notice-cursor',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('是否开启聚焦', 'options_framework_theme'),
'desc' => __('默认开启', 'options_framework_theme'),
'id' => 'top_feature',
'std' => '1',
'type' => 'checkbox');
$options[] = array(
'name' => __('聚焦标题', 'options_framework_theme'),
'desc' => __('默认为聚焦,你也可以修改为其他,当然不能当广告用!不允许!!', 'options_framework_theme'),
'id' => 'feature_title',
'std' => '聚焦',
'class' => 'mini',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图一', 'options_framework_theme'),
'desc' => __('尺寸257px*160px', 'options_framework_theme'),
'id' => 'feature1_img',
'std' => $imagepath.'/temp.jpg',
'type' => 'upload');
$options[] = array(
'name' => __('聚焦图一标题', 'options_framework_theme'),
'desc' => __('聚焦图一标题', 'options_framework_theme'),
'id' => 'feature1_title',
'std' => 'feature1',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图一链接', 'options_framework_theme'),
'desc' => __('聚焦图一链接', 'options_framework_theme'),
'id' => 'feature1_link',
'std' => '#',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图二', 'options_framework_theme'),
'desc' => __('尺寸257px*160px', 'options_framework_theme'),
'id' => 'feature2_img',
'std' => $imagepath.'/temp.jpg',
'type' => 'upload');
$options[] = array(
'name' => __('聚焦图二标题', 'options_framework_theme'),
'desc' => __('聚焦图二标题', 'options_framework_theme'),
'id' => 'feature2_title',
'std' => 'feature2',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图二链接', 'options_framework_theme'),
'desc' => __('聚焦图二链接', 'options_framework_theme'),
'id' => 'feature2_link',
'std' => '#',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图三', 'options_framework_theme'),
'desc' => __('尺寸257px*160px', 'options_framework_theme'),
'id' => 'feature3_img',
'std' => $imagepath.'/temp.jpg',
'type' => 'upload');
$options[] = array(
'name' => __('聚焦图三标题', 'options_framework_theme'),
'desc' => __('聚焦图三标题', 'options_framework_theme'),
'id' => 'feature3_title',
'std' => 'feature3',
'type' => 'text');
$options[] = array(
'name' => __('聚焦图三链接', 'options_framework_theme'),
'desc' => __('聚焦图三链接', 'options_framework_theme'),
'id' => 'feature3_link',
'std' => '#',
'type' => 'text');
//其他
$options[] = array(
'name' => __('其他', 'options_framework_theme'),
'type' => 'heading' );
$options[] = array(
'name' => __('开启PJAX局部刷新(建议开启)', 'options_framework_theme'),
'desc' => __('原理与Ajax相同', 'options_framework_theme'),
'id' => 'poi_pjax',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('首页不显示的分类文章', 'options_framework_theme'),
'desc' => __('填写分类ID,多个用英文“ , ”分开', 'options_framework_theme'),
'id' => 'classify_display',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('图片展示分类', 'options_framework_theme'),
'desc' => __('填写分类ID,多个用英文“ , ”分开', 'options_framework_theme'),
'id' => 'image_category',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('发件地址前缀', 'options_framework_theme'),
'desc' => __('用于发送系统邮件,在用户的邮箱中显示的发件人地址,不要使用中文,默认系统邮件地址为 poi@你的域名.com', 'options_framework_theme'),
'id' => 'mail_user_name',
'std' => 'poi',
'type' => 'text');
$options[] = array(
'name' => __('开启SMTP发件功能', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启。(使用虚拟主机的同学,请先确定主机控制台中 PHP.ini 设置fsockopen函数是否启用)', 'options_framework_theme'),
'id' => 'open_smtp',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('【SMTP设置】邮件发送端口', 'options_framework_theme'),
'desc' => __('SMTP邮件发送端口,这个和下面的对应,如果这里填写25,则下面为空白', 'options_framework_theme'),
'id' => 'open_smtp_port',
'std' => '465',
'type' => 'text');
$options[] = array(
'name' => __('【SMTP设置】验证 ssl或tls连接', 'options_framework_theme'),
'desc' => __('是否验证 ssl,这个和上面的对应,如果不填写,则上面的端口须为25(推荐使用465等ssl端口,25端口可能会出问题)', 'options_framework_theme'),
'id' => 'open_smtp_smtpsecure',
'std' => 'ssl',
'type' => 'text');
$options[] = array(
'name' => __('【SMTP设置】邮箱的SMTP服务器地址', 'options_framework_theme'),
'desc' => __('邮箱的SMTP服务器地址,如果是QQ的则为:smtp.exmail.qq.com,在邮箱设置或者帮助中心中可以找到', 'options_framework_theme'),
'id' => 'open_smtp_host',
'std' => 'smtp.exmail.qq.com',
'type' => 'text');
$options[] = array(
'name' => __('【SMTP设置】发件邮箱地址', 'options_framework_theme'),
'desc' => __('你的邮箱地址,例:[email protected]', 'options_framework_theme'),
'id' => 'open_smtp_username',
'std' => '[email protected]',
'type' => 'text');
$options[] = array(
'name' => __('【SMTP设置】发件邮箱授权密码', 'options_framework_theme'),
'desc' => __('你的邮箱授权密码(有的是登录密码)', 'options_framework_theme'),
'id' => 'open_smtp_password',
'std' => '***',
'type' => 'text');
$options[] = array(
'name' => __('开启多说插件支持', 'options_framework_theme'),
'desc' => __('如果使用多说插件,请勾选此项', 'options_framework_theme'),
'id' => 'general_disqus_plugin_support',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('开启Prism代码高亮支持', 'options_framework_theme'),
'desc' => __('仅支持Prism.js的高亮插件,如果你用使用该插件且开启了Pjax,请勾选此项,【注意!这不是插件功能】,只是帮助插件JS文件进入Pjax重载', 'options_framework_theme'),
'id' => 'open_prism_codelamp',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('七牛图片cdn', 'options_framework_theme'),
'desc' => __('!重要:填写格式为 http://你的二级域名(七牛三级域名)/wp-content/uploads', 'options_framework_theme'),
'id' => 'qiniu_cdn',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('后台登陆界面背景图', 'options_framework_theme'),
'desc' => __('该地址为空则使用默认图片', 'options_framework_theme'),
'id' => 'login_bg',
'type' => 'upload');
//杂项
$options[] = array(
'name' => __('杂项', 'options_framework_theme'),
'type' => 'heading' );
$options[] = array(
'name' => __('开启方糖气球评论微信推送', 'options_framework_theme'),
'desc' => __('填写在方糖气球注册的SCKEY,此功能借助微信方糖公众号推送评论通知,<a href="http://sc.ftqq.com/3.version" target="_top">点击查看详情<a/>', 'options_framework_theme'),
'id' => 'wpso_wenotify_key',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('开启剪贴板版权标识', 'options_framework_theme'),
'desc' => __('复制超过30个字节时自动向剪贴板添加版权标识,默认开启', 'options_framework_theme'),
'id' => 'clipboard_copyright',
'std' => '1',
'type' => 'checkbox');
$options[] = array(
'name' => __('允许私密评论', 'options_framework_theme'),
'desc' => __('允许用户设置自己的评论对其他人不可见', 'options_framework_theme'),
'id' => 'open_private_message',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('评论UA信息', 'options_framework_theme'),
'desc' => __('勾选开启,用户的浏览器,操作系统信息', 'options_framework_theme'),
'id' => 'open_useragent',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('鼠标点击特效❤', 'options_framework_theme'),
'desc' => __('默认关闭,勾选开启', 'options_framework_theme'),
'id' => 'canvas_heart',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('网站标题自动判断', 'options_framework_theme'),
'desc' => __('点击开启,比较好玩…', 'options_framework_theme'),
'id' => 'web_title',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('失去焦点显示标题', 'options_framework_theme'),
'id' => 'onblur',
'std' => '(つ ェ ⊂)我藏好了哦~',
'type' => 'text');
$options[] = array(
'name' => __('获得焦点显示标题', 'options_framework_theme'),
'id' => 'onfocus',
'std' => '(*゜ロ゜)ノ被发现了~',
'type' => 'text');
//前台登录
$options[] = array(
'name' => __('前台登录', 'options_framework_theme'),
'type' => 'heading' );
$options[] = array(
'name' => __('指定登录地址', 'options_framework_theme'),
'desc' => __('强制不使用后台地址登陆,填写新建的登陆页面地址,比如 http://www.xxx.com/login【注意】填写前先测试下你新建的页面是可以正常打开的,以免造成无法进入后台等情况', 'options_framework_theme'),
'id' => 'exlogin_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('指定注册地址', 'options_framework_theme'),
'desc' => __('该链接使用在登录页面作为注册入口,建议填写', 'options_framework_theme'),
'id' => 'exregister_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('允许用户注册', 'options_framework_theme'),
'desc' => __('勾选开启,允许用户在前台注册', 'options_framework_theme'),
'id' => 'ex_register_open',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('登录后自动跳转', 'options_framework_theme'),
'desc' => __('勾选开启,管理员跳转至后台,用户跳转至主页', 'options_framework_theme'),
'id' => 'login_urlskip',
'std' => '0',
'type' => 'checkbox');
return $options;
}