forked from mashirozx/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.php
1239 lines (1077 loc) · 56.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
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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 'sakura'
* with the actual text domain for your theme.
*
* Frame from: https://github.com/devinsays/options-framework-plugin/
*/
function optionsframework_options()
{
// 测试数据
$test_array = array(
'one' => __('1', 'sakura'),
'two' => __('2', 'sakura'),
'three' => __('3', 'sakura'),
'four' => __('4', 'sakura'),
'five' => __('5', 'sakura'),
'six' => __('6', 'sakura'),
'seven' => __('7', 'sakura'),
);
// 复选框数组
$multicheck_array = array(
'one' => __('1', 'sakura'),
'two' => __('2', 'sakura'),
'three' => __('3', 'sakura'),
'four' => __('4', 'sakura'),
'five' => __('5', 'sakura'),
);
// 复选框默认值
$multicheck_defaults = array(
'one' => '1',
'five' => '1',
);
// 背景默认值
$background_defaults = array(
'color' => '',
'image' => 'https://view.moezx.cc/images/2018/12/23/knights-of-the-frozen-throne-8k-qa.jpg',
'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' => __('Basic settings', 'sakura'), /*基本设置*/
'type' => 'heading');
$options[] = array(
'name' => __('Site title', 'sakura'), /*站点名称*/
'desc' => __('Mashiro\'s Blog', 'sakura'),
'id' => 'site_name',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Author', 'sakura'), /*作者*/
'desc' => __('Mashiro', 'sakura'),
'id' => 'author_name',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Theme style', 'sakura'), /*主题风格*/
'id' => 'theme_skin',
'std' => "#FE9600",
'desc' => __('Custom theme color', 'sakura'), /*自定义主题颜色*/
'type' => "color",
);
$options[] = array(
'name' => __('Theme scheme tool transparency', 'sakura'), /*切换主题菜单透明度*/
'desc' => __('Adjust the theme scheme menu transparency, fill in decimals between 0 and 1, the smaller the value, the more transparent. The default value is 0.8', 'sakura'), /*调整切换主题菜单透明度,值越小越透明。默认透明度0.8*/
'id' => 'sakura_skin_alpha',
'std' => '0.8',
'type' => 'text');
$options[] = array(
'name' => __('Change web background', 'sakura'), /*切换网页背景*/
'desc' => __('The foreground switches the background of the webpage. There are 8 urls separated by commas. The order corresponds to the foreground scheme tool button position (the order of the buttons is from left to right, top to bottom). If no background is needed, fill in the corresponding position as none.<strong>Note: If the theme is updated from v3.2.3 and below, be sure to change the [Version Control] parameter under the [Other] tab of this configuration page to any new value!</strong>', 'sakura'), /*前台切换网页背景,共8个url,使用英文逗号分隔,顺序对应前台切换主题按钮位置(按钮顺序从左至右,从上至下),如不需要背景则填写对应位置为none。<strong>注意:如果主题是从v3.2.3及以下更新过来的,请务必将本配置页的【其他】标签下的【版本控制】参数修改为任意新值!</strong>*/
'id' => 'sakura_skin_bg',
'std' => 'none,https://cdn.jsdelivr.net/gh/spirit1431007/cdn@1.6/img/sakura.png,https://cdn.jsdelivr.net/gh/spirit1431007/cdn@1.6/img/plaid2dbf8.jpg,https://cdn.jsdelivr.net/gh/spirit1431007/cdn@1.6/img/star02.png,https://cdn.jsdelivr.net/gh/spirit1431007/cdn@1.6/img/kyotoanimation.png,https://cdn.jsdelivr.net/gh/spirit1431007/cdn@1.6/img/dot_orange.gif,https://api.mashiro.top/bing/,https://cdn.jsdelivr.net/gh/moezx/cdn@3.1.2/other-sites/api-index/images/me.png',
'type' => 'textarea');
$options[] = array(
'name' => __('Darkmode', 'sakura'),
'desc' => __('Automatically turn on dark mode from 10:00 p.m. to 06:00 a.m.', 'sakura'),
'id' => 'darkmode',
'std' => '1',
'type' => 'checkbox');
$options[] = array(
'name' => __('Personal avatar', 'sakura'), /*个人头像*/
'desc' => __('The best size is 130px*130px.', 'sakura'), /*最佳尺寸130px*130px。*/
'id' => 'focus_logo',
'type' => 'upload');
$options[] = array(
'name' => __('Text LOGO', 'sakura'), /*文字版LOGO*/
'desc' => __('The home page does not display the avatar above, but displays a paragraph of text (use the avatar above if left blank).The text is recommended not to be too long, about 16 bytes is appropriate.', 'sakura'), /*首页不显示上方的头像,而是显示一段文字(此处留空则使用上方的头像)。文字建议不要过长,16个字节左右为宜。*/
'id' => 'focus_logo_text',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('logo', 'sakura'),
'desc' => __('The best height size is 40px。', 'sakura'), /*最佳高度尺寸40px。*/
'id' => 'akina_logo',
'type' => 'upload');
$options[] = array(
'name' => __('Favicon', 'sakura'),
'desc' => __('It is the small logo on the browser tab, fill in the url', 'sakura'), /*就是浏览器标签栏上那个小 logo,填写url*/
'id' => 'favicon_link',
'std' => get_template_directory_uri().'/images/favicon.ico',
'type' => 'text');
$options[] = array(
'name' => __('Custom keywords and descriptions ', 'sakura'), /*自定义关键词和描述*/
'desc' => __('Customize keywords and descriptions after opening', 'sakura'), /*开启之后可自定义填写关键词和描述*/
'id' => 'akina_meta',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Site keywords', 'sakura'), /*网站关键词*/
'desc' => __('Each keyword is divided by a comma "," and the number is within 5.', 'sakura'), /*各关键字间用半角逗号","分割,数量在5个以内最佳。*/
'id' => 'akina_meta_keywords',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Site descriptions', 'sakura'), /*网站描述*/
'desc' => __('Describe the site in concise text, with a maximum of 120 words.', 'sakura'), /*用简洁的文字描述本站点,字数建议在120个字以内。*/
'id' => 'akina_meta_description',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Expand the nav menu', 'sakura'), /*展开导航菜单*/
'desc' => __('Check to enable, default shrink', 'sakura'), /*勾选开启,默认收缩*/
'id' => 'shownav',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Head decoration', 'sakura'), /*头部装饰图*/
'desc' => __('Enable by default, check off, display on the article page, separate page and category page', 'sakura'), /*默认开启,勾选关闭,显示在文章页面,独立页面以及分类页*/
'id' => 'patternimg',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Search button', 'sakura'), /*搜索按钮*/
'id' => 'top_search',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'),
'no' => __('Close', 'sakura'),
));
$options[] = array(
'name' => __('Home article style', 'sakura'), /*首页文章风格*/
'id' => 'post_list_style',
'std' => "imageflow",
'type' => "radio",
'options' => array(
'standard' => __('Standard', 'sakura'), /*标准*/
'imageflow' => __('Graphic', 'sakura'), /*图文*/
));
$options[] = array(
'name' => __('Cover manifest', 'sakura'), /*首页文章特色图选项*/
'desc' => __('Select how to call the post featue image, only for the post without feature image', 'sakura'), /*选择文章特色图的调用方式,只对没有设置特色图像的文章生效*/
'id' => 'post_cover_options',
'std' => "type_1",
'type' => "select",
'options' => array(
'type_1' => __('same as the cover of the first screen (default)', 'sakura'), /*跟随第一屏封面图*/
'type_2' => __('custom api (advanced)', 'sakura'), /*外部随机图API*/
)
);
$options[] = array(
'name' => __('Cover images url', 'sakura'), /*图片库url*/
'desc' => __('Fill in the custom image api url.', 'sakura'),
'id' => 'post_cover',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Home article feature images (only valid for standard mode)', 'sakura'), /*首页文章特色图(仅对标准风格生效)*/
'id' => 'list_type',
'std' => "round",
'type' => "radio",
'options' => array(
'round' => __('Round', 'sakura'), /*圆形*/
'square' => __('Square', 'sakura'), /*方形*/
));
$options[] = array(
'name' => __('Home article feature images alignment (only for graphic mode, default left and right alternate)', 'sakura'), /*首页文章特色图对齐方式(仅对图文风格生效,默认左右交替)*/
'id' => 'feature_align',
'std' => "alternate",
'type' => "radio",
'options' => array(
'left' => __('Left', 'sakura'), /*向左对齐*/
'right' => __('Right', 'sakura'), /*向右对齐*/
'alternate' => __('Alternate', 'sakura'), /*左右交替*/
));
$options[] = array(
'name' => __('Comment shrink', 'sakura'), /*评论收缩*/
'id' => 'toggle-menu',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'), /*开启*/
'no' => __('Close', 'sakura'), /*关闭*/
));
$options[] = array(
'name' => __('Display author information at the end of the article?', 'sakura'), /*文章末尾显示作者信息?*/
'desc' => __('Check to enable', 'sakura'), /*勾选启用*/
'id' => 'show_authorprofile',
'std' => '1',
'type' => 'checkbox');
$options[] = array(
'name' => __('Paging mode', 'sakura'), /*分页模式*/
'id' => 'pagenav_style',
'std' => "ajax",
'type' => "radio",
'options' => array(
'ajax' => __('Ajax load', 'sakura'), /*ajax加载*/
'np' => __('Previous and next page', 'sakura'), /*上一页和下一页*/
));
$options[] = array(
'name' => __('Automatically load the next page', 'sakura'), /*自动加载下一页*/
'desc' => __('(seconds) Set to automatically load the next page time, the default is not automatically loaded', 'sakura'), /*(秒)设置自动加载下一页时间,默认不自动加载*/
'id' => 'auto_load_post',
'std' => '233',
'type' => 'select',
'options' => array(
'0' => __('0', 'sakura'),
'1' => __('1', 'sakura'),
'2' => __('2', 'sakura'),
'3' => __('3', 'sakura'),
'4' => __('4', 'sakura'),
'5' => __('5', 'sakura'),
'6' => __('6', 'sakura'),
'7' => __('7', 'sakura'),
'8' => __('8', 'sakura'),
'9' => __('9', 'sakura'),
'10' => __('10', 'sakura'),
'233' => __('Do not load automatically', 'sakura'), /*不自动加载*/
));
$options[] = array(
'name' => __('Blogger description', 'sakura'), /*博主描述*/
'desc' => __('A self-described statement', 'sakura'), /*一段自我描述的话*/
'id' => 'admin_des',
'std' => '一沙一世界,一花一天堂。君掌盛无边,刹那成永恒。',
'type' => 'textarea');
$options[] = array(
'name' => __('Footer info', 'sakura'), /*页脚信息*/
'desc' => __('Footer description, support for HTML code', 'sakura'), /*页脚说明文字,支持HTML代码*/
'id' => 'footer_info',
'std' => 'Copyright © by Mashiro All Rights Reserved.',
'type' => 'textarea');
$options[] = array(
'name' => __('Google analytics', 'sakura'), /*Google 统计代码*/
'desc' => __('UA-xxxxx-x', 'sakura'),
'id' => 'google_analytics_id',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('CNZZ Statistics (not recommand)', 'sakura'), /*站长统计(不建议使用)*/
'desc' => __('Statistics code, which will be invisible in web page.', 'sakura'), /*填写统计代码,将被隐藏*/
'id' => 'site_statistics',
'std' => '',
'type' => 'textarea');
$options[] = array(
'name' => __('Customize CSS styles', 'sakura'), /*自定义CSS样式*/
'desc' => __('Fill in the CSS code directly, no need to write style tags', 'sakura'), /*直接填写CSS代码,不需要写style标签*/
'id' => 'site_custom_style',
'std' => '',
'type' => 'textarea');
//第一屏
$options[] = array(
'name' => __('First screen', 'sakura'), /*第一屏*/
'type' => 'heading');
$options[] = array(
'name' => __('Main switch', 'sakura'), /*总开关*/
'desc' => __('Default on, check off', 'sakura'), /*默认开启,勾选关闭*/
'id' => 'head_focus',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Social information', 'sakura'), /*社交信息*/
'desc' => __('Enable by default, check off, display avatar, signature, SNS', 'sakura'), /*默认开启,勾选关闭,显示头像、签名、SNS*/
'id' => 'focus_infos',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Social information style', 'sakura'), /*社交信息样式*/
'id' => 'social_style',
'std' => "v2",
'type' => "radio",
'options' => array(
'v2' => __('Merge with signature', 'sakura'), /*与签名合并*/
'v1' => __('Independent line', 'sakura'), /*独立成行*/
));
$options[] = array(
'name' => __('Cover manifest', 'sakura'), /*封面图片库选项*/
'desc' => __('Select how to call the cover random image', 'sakura'), /*选择封面随机图的调用方式*/
'id' => 'cover_cdn_options',
'std' => "type_2",
'type' => "select",
'options' => array(
'type_1' => __('webp images (optimization)', 'sakura'), /*webp优化随机图*/
'type_2' => __('built-in api (default)', 'sakura'), /*内置原图随机图*/
'type_3' => __('custom api (advanced)', 'sakura'), /*外部随机图API*/
)
);
$options[] = array(
'name' => __('Cover images url', 'sakura'), /*图片库url*/
'desc' => sprintf(__('Fill in the manifest path for random picture display, please refer to <a href = "https: //github.com/mashirozx/Sakura/wiki/options">Wiki </a>. If you select webp images above, click <a href = "%s">here</a> to update manifest', 'sakura'), rest_url('sakura/v1/database/update')), /*填写 manifest 路径,更多信息请参考<a href="https://github.com/mashirozx/Sakura/wiki/options">Wiki</a>,,如果你在上面选择了webp优化,点击<a href = "%s">这里</a>更新 manifest*/
'id' => 'cover_cdn',
'std' => 'https://cdn.jsdelivr.net/gh/mashirozx/sakura@3.3.3',
'type' => 'text');
$options[] = array(
'name' => __('full-screen display', 'sakura'), /*全屏显示*/
'desc' => __('Default on, check off', 'sakura'), /*默认开启,勾选关闭*/
'id' => 'focus_height',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Enable video', 'sakura'), /*开启视频*/
'desc' => __('Check on', 'sakura'), /*勾选开启*/
'id' => 'focus_amv',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Live', 'sakura'),
'desc' => __('Check to enable, the video will continue to play automatically, you need to enable Pjax', 'sakura'), /*勾选开启,视频自动续播,需要开启Pjax功能*/
'id' => 'focus_mvlive',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Video address', 'sakura'), /*视频地址*/
'desc' => __('The source address of the video, the address is spliced below the video name, the slash is not required at the end of the address', 'sakura'), /*视频的来源地址,该地址拼接下面的视频名,地址尾部不需要加斜杠*/
'id' => 'amv_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Video name', 'sakura'), /*视频名称*/
'desc' => __('abc.mp4, just fill in the video file name abc, multiple videos separated by commas such as abc, efg, do not care about the order, because the loading is random extraction', 'sakura'), /*abc.mp4 ,只需要填写视频文件名 abc 即可,多个用英文逗号隔开如 abc,efg ,无需在意顺序,因为加载是随机的抽取的 */
'id' => 'amv_title',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Background image filter', 'sakura'), /*背景图滤镜*/
'id' => 'focus_img_filter',
'std' => "filter-nothing",
'type' => "radio",
'options' => array(
'filter-nothing' => __('Nothing', 'sakura'), /*无*/
'filter-undertint' => __('Undertint', 'sakura'), /*浅色*/
'filter-dim' => __('Dim', 'sakura'), /*暗淡*/
'filter-grid' => __('Grid', 'sakura'), /*网格*/
'filter-dot' => __('Dot', 'sakura'), /*点点*/
));
$options[] = array(
'name' => __('Whether to turn on the top-feature', 'sakura'), /*是否开启聚焦*/
'desc' => __('Default on', 'sakura'),
'id' => 'top_feature',
'std' => '1',
'type' => 'checkbox');
$options[] = array(
'name' => __('Top-feature style', 'sakura'), /*聚焦样式*/
'id' => 'top_feature_style',
'std' => "left_and_right",
'type' => "radio",
'options' => array(
'left_and_right' => __('Alternate left and right', 'sakura'), /*左右交替*/
'bottom_to_top' => __('From bottom to top', 'sakura'), /*从下往上*/
));
$options[] = array(
'name' => __('Top-feature title', 'sakura'), /*聚焦标题*/
'desc' => __('Default is Discovery, you can also change it to other, of course you can\'t use it as an advertisement!Not allowed!!', 'sakura'), /*默认为聚焦,你也可以修改为其他,当然不能当广告用!不允许!!*/
'id' => 'feature_title',
'std' => 'Discovery',
'class' => 'mini',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 1 image', 'sakura'), /*聚焦图一*/
'desc' => __('size 257px*160px', 'sakura'), /*尺寸257px*160px*/
'id' => 'feature1_img',
'std' => $imagepath . '/temp.png',
'type' => 'upload');
$options[] = array(
'name' => __('Top-feature 1 title', 'sakura'), /*聚焦图一标题*/
'desc' => __('Top-feature 1 title', 'sakura'), /*聚焦图一标题*/
'id' => 'feature1_title',
'std' => 'feature1',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 1 description', 'sakura'), /*聚焦图一描述*/
'desc' => __('Top-feature 1 description', 'sakura'), /*聚焦图一描述*/
'id' => 'feature1_description',
'std' => 'Description goes here 1',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 1 link', 'sakura'), /*聚焦图一链接*/
'desc' => __('Top-feature 1 link', 'sakura'), /*聚焦图一链接*/
'id' => 'feature1_link',
'std' => '#',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 2 image', 'sakura'), /*聚焦图二*/
'desc' => __('size 257px*160px', 'sakura'), /*尺寸257px*160px*/
'id' => 'feature2_img',
'std' => $imagepath . '/temp.png',
'type' => 'upload');
$options[] = array(
'name' => __('Top-feature 2 title', 'sakura'), /*聚焦图二标题*/
'desc' => __('Top-feature 2 title', 'sakura'), /*聚焦图二标题*/
'id' => 'feature2_title',
'std' => 'feature2',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 2 description', 'sakura'), /*聚焦图二描述*/
'desc' => __('Top-feature 2 description', 'sakura'), /*聚焦图二描述*/
'id' => 'feature2_description',
'std' => 'Description goes here 2',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 2 link', 'sakura'), /*聚焦图二链接*/
'desc' => __('Top-feature 2 link', 'sakura'), /*聚焦图二链接*/
'id' => 'feature2_link',
'std' => '#',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 3 image', 'sakura'), /*聚焦图三*/
'desc' => __('size 257px*160px', 'sakura'), /*尺寸257px*160px*/
'id' => 'feature3_img',
'std' => $imagepath . '/temp.png',
'type' => 'upload');
$options[] = array(
'name' => __('Top-feature 3 title', 'sakura'), /*聚焦图三标题*/
'desc' => __('Top-feature 3 title', 'sakura'), /*聚焦图三标题*/
'id' => 'feature3_title',
'std' => 'feature3',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 3 description', 'sakura'), /*聚焦图三描述*/
'desc' => __('Top-feature 3 description', 'sakura'), /*聚焦图三描述*/
'id' => 'feature3_description',
'std' => 'Description goes here 3',
'type' => 'text');
$options[] = array(
'name' => __('Top-feature 3 link', 'sakura'), /*聚焦图三链接*/
'desc' => __('Top-feature 3 link', 'sakura'), /*聚焦图三链接*/
'id' => 'feature3_link',
'std' => '#',
'type' => 'text');
//文章页
$options[] = array(
'name' => __('Post page', 'sakura'), /*文章页*/
'type' => 'heading');
$options[] = array(
'name' => __('Post style', 'sakura'), /*文章样式*/
'id' => 'entry_content_theme',
'std' => "sakura",
'type' => "radio",
'options' => array(
'sakura' => __('Sakura', 'sakura'), /*默认样式*/
'github' => __('GitHub', 'sakura'),
));
$options[] = array(
'name' => __('Post like', 'sakura'), /*文章点赞*/
'id' => 'post_like',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'), /*开启*/
'no' => __('Close', 'sakura'), /*关闭*/
));
$options[] = array(
'name' => __('Post share', 'sakura'), /*文章分享*/
'id' => 'post_share',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'), /*开启*/
'no' => __('Close', 'sakura'), /*关闭*/
));
$options[] = array(
'name' => __('Previous and Next', 'sakura'), /*上一篇下一篇*/
'id' => 'post_nepre',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'), /*开启*/
'no' => __('Close', 'sakura'), /*关闭*/
));
$options[] = array(
'name' => __('Author profile', 'sakura'), /*博主信息*/
'id' => 'author_profile',
'std' => "yes",
'type' => "radio",
'options' => array(
'yes' => __('Open', 'sakura'), /*开启*/
'no' => __('Close', 'sakura'), /*关闭*/
));
$options[] = array(
'name' => __('Alipay reward', 'sakura'), /*支付宝打赏*/
'desc' => __('Alipay qrcode', 'sakura'), /*支付宝二维码*/
'id' => 'alipay_code',
'type' => 'upload');
$options[] = array(
'name' => __('Wechat reward', 'sakura'), /*微信打赏*/
'desc' => __('Wechat qrcode ', 'sakura'), /*微信二维码*/
'id' => 'wechat_code',
'type' => 'upload');
//社交选项
$options[] = array(
'name' => __('Social network', 'sakura'), /*社交网络*/
'type' => 'heading');
$options[] = array(
'name' => __('Wechat', 'sakura'), /*微信*/
'desc' => __('Wechat qrcode', 'sakura'), /*微信二维码*/
'id' => 'wechat',
'type' => 'upload');
$options[] = array(
'name' => __('Sina Weibo', 'sakura'), /*新浪微博*/
'desc' => __('Sina Weibo address', 'sakura'), /*新浪微博地址*/
'id' => 'sina',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Tencent QQ', 'sakura'), /*腾讯QQ*/
'desc' => __('tencent://message/?uin={{QQ number}}. for example, tencent://message/?uin=123456', 'sakura'), /*tencent://message/?uin={{QQ号码}},如tencent://message/?uin=123456*/
'id' => 'qq',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Telegram', 'sakura'),
'desc' => __('Telegram link', 'sakura'), /*Telegram链接*/
'id' => 'telegram',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Qzone', 'sakura'), /*QQ空间*/
'desc' => __('Qzone address', 'sakura'), /*QQ空间地址*/
'id' => 'qzone',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('GitHub', 'sakura'),
'desc' => __('GitHub address', 'sakura'), /*GitHub地址*/
'id' => 'github',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Lofter', 'sakura'),
'desc' => __('Lofter address', 'sakura'), /*lofter地址*/
'id' => 'lofter',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('BiliBili', 'sakura'),
'desc' => __('BiliBili address', 'sakura'), /*B站地址*/
'id' => 'bili',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Youku video', 'sakura'), /*优酷视频*/
'desc' => __('Youku video address', 'sakura'), /*优酷地址*/
'id' => 'youku',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Netease Cloud Music', 'sakura'), /*网易云音乐*/
'desc' => __('Netease Cloud Music address', 'sakura'), /*网易云音乐地址*/
'id' => 'wangyiyun',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Twitter', 'sakura'),
'desc' => __('Twitter address', 'sakura'), /*推特地址*/
'id' => 'twitter',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Facebook', 'sakura'),
'desc' => __('Facebook address', 'sakura'), /*脸书地址*/
'id' => 'facebook',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Jianshu', 'sakura'), /*简书*/
'desc' => __('Jianshu address', 'sakura'), /*简书地址*/
'id' => 'jianshu',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('CSDN', 'sakura'),
'desc' => __('CSND community address', 'sakura'), /*CSND社区地址*/
'id' => 'csdn',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Zhihu', 'sakura'), /*知乎*/
'desc' => __('Zhihu address', 'sakura'), /*知乎地址*/
'id' => 'zhihu',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Email-name', 'sakura'), /*邮箱-用户名*/
'desc' => __('The name part of name@domain.com, only the frontend has js runtime environment can get the full address, you can rest assured to fill in', 'sakura'), /*name@domain.com 的 name 部分,前端仅具有js运行环境时才能获取完整地址,可放心填写*/
'id' => 'email_name',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Email-domain', 'sakura'), /*邮箱-域名*/
'desc' => __('The domain.com part of name@domain.com', 'sakura'), /*ame@domain.com 的 domain.com 部分*/
'id' => 'email_domain',
'std' => '',
'type' => 'text');
//评论区
$options[] = array(
'name' => __('Comment field', 'sakura'), /*评论区*/
'type' => 'heading');
$options[] = array(
'name' => __('Gravatar avatar proxy', 'sakura'),
'desc' => __('A front-ed proxy for Gravatar, eg. gravatar.2heng.xin/avatar . Leave it blank if you do not need.', 'sakura'),
'id' => 'gravatar_proxy',
'std' => "gravatar.2heng.xin/avatar",
'type' => "text");
$options[] = array(
'name' => __('Comment image upload API', 'sakura'), /*评论图片上传接口*/
'id' => 'img_upload_api',
'std' => "imgur",
'type' => "radio",
'options' => array(
'imgur' => __('Imgur (https://imgur.com)', 'sakura'),
'smms' => __('SM.MS (https://sm.ms)', 'sakura'),
'chevereto' => __('Chevereto (https://chevereto.com)', 'sakura'),
));
$options[] = array(
'name' => __('Imgur Client ID', 'sakura'),
'desc' => __('Register your application <a href="https://api.imgur.com/oauth2/addclient">here</a>, note we only need the Client ID here.', 'sakura'),
'id' => 'imgur_client_id',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('SM.MS Secret Token', 'sakura'),
'desc' => __('Register your application <a href="https://sm.ms/home/apitoken">here</a>.', 'sakura'),
'id' => 'smms_client_id',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Chevereto API v1 key', 'sakura'),
'desc' => __('Get your API key here: ' . akina_option('cheverto_url') . '/dashboard/settings/api', 'sakura'),
'id' => 'chevereto_api_key',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Chevereto URL', 'sakura'),
'desc' => __('Your Chevereto homepage url, no slash in the end, eg. https://your.cherverto.com', 'sakura'),
'id' => 'cheverto_url',
'std' => 'https://your.cherverto.com',
'type' => 'text');
$options[] = array(
'name' => __('Comment images proxy', 'sakura'),
'desc' => __('A front-ed proxy for the uploaded images. Leave it blank if you do not need.', 'sakura'),
'id' => 'cmt_image_proxy',
'std' => 'https://images.weserv.nl/?url=',
'type' => 'text');
$options[] = array(
'name' => __('Imgur upload proxy', 'sakura'),
'desc' => __('A back-ed proxy to upload images. You may set a self hosted proxy with Nginx, following my <a href="https://2heng.xin/2018/06/06/javascript-upload-images-with-imgur-api/">turtal</a>. This feature is mainly for Chinese who cannot access to Imgur due to the GFW. The default and official setting is 【<a href="https://api.imgur.com/3/image/">https://api.imgur.com/3/image/</a>】', 'sakura'),
'id' => 'imgur_upload_image_proxy',
'std' => 'https://api.imgur.com/3/image/',
'type' => 'text');
$options[] = array(
'name' => __('Comments reply notification', 'sakura'), /*邮件回复通知*/
'desc' => __('WordPress will use email to notify users when their comments receive a reply by default. Tick this item allows users to set their own comments reply notification', 'sakura'), /*WordPress默认会使用邮件通知用户评论收到回复,开启此项允许用户设置自己的评论收到回复时是否使用邮件通知*/
'id' => 'mail_notify',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Administrator comment notification', 'sakura'), /*邮件回复通知管理员*/
'desc' => __('Whether to use email notification when the administrator\'s comments receive a reply', 'sakura'), /*当管理员评论收到回复时是否使用邮件通知*/
'id' => 'admin_notify',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Enable private comment', 'sakura'), /*允许私密评论*/
'desc' => __('Allow users to set their own comments to be invisible to others', 'sakura'), /*允许用户设置自己的评论对其他人不可见*/
'id' => 'open_private_message',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Human verification', 'sakura'), /*机器人验证*/
'desc' => __('Enable human verification', 'sakura'), /*开启机器人验证*/
'id' => 'norobot',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('QQ avatar link encryption', 'sakura'), /*QQ头像链接加密*/
'desc' => __('Do not display the user\'s qq avatar links directly.', 'sakura'), /*不直接暴露用户qq头像链接*/
'id' => 'qq_avatar_link',
'std' => "off",
'type' => "select",
'options' => array(
'off' => __('Off (default)', 'sakura'), /*关闭(默认)*/
'type_1' => __('use redirect (general security)', 'sakura'), /*使用 重定向(安全性一般)'*/
'type_2' => __('fetch data at backend (high security)', 'sakura'), /*后端获取数据(安全性高)*/
'type_3' => __('fetch data at backend (high security,slow)', 'sakura'), /*后端获取数据(安全性高, 慢)*/
));
$options[] = array(
'name' => __('Comment UA infomation', 'sakura'), /*评论UA信息*/
'desc' => __('Check to enable, display the user\'s browser, operating system information', 'sakura'), /*勾选开启,显示用户的浏览器,操作系统信息*/
'id' => 'open_useragent',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Comment location infomation', 'sakura'), /*评论位置信息*/
'desc' => __('Check to enable, display the user\'s location info', 'sakura'), /*勾选开启,显示用户的位置信息*/
'id' => 'open_location',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Enable disqus', 'sakura'), /*开启多说插件支持*/
'desc' => __('Enable disqus for comment', 'sakura'), /*多说已经凉了*/
'id' => 'general_disqus_plugin_support',
'std' => '0',
'type' => 'checkbox');
$options[] = array(
'name' => __('Time Zone adjustment', 'sakura'), /*时区调整*/
'desc' => __('If the comment has a time difference problem adjust here, fill in an integer, the calculation method: actual_time = display_error_time - the_integer_you_entered (unit: hour)', 'sakura'), /*如果评论出现时差问题在这里调整,填入一个整数,计算方法:实际时间=显示错误的时间-你输入的整数(单位:小时)*/
'id' => 'time_zone_fix',
'std' => '0',
'type' => 'text');
//后台配置
$options[] = array(
'name' => __('Dashboard configuration', 'sakura'), /*后台配置*/
'type' => 'heading');
//后台面板自定义配色方案
$options[] = array(
'name' => __('Dashboard panel custom color scheme', 'sakura'), /*后台面板自定义配色方案*/
'desc' => __('You can design the dashboard panel (/wp-admin/) style yourself below, but before you start, please go to <a href="/wp-admin/profile.php">here</a> to change the color scheme to custom.(Custom).<br><b>Tip: </b>How to match colors? Maybe <a href="https://mashiro.top/color-thief/">this</a> can help you.', 'sakura'), /*你可以在下面自行设计后台面板(/wp-admin/)样式,不过在开始之前请到<a href="/wp-admin/profile.php">这里</a>将配色方案改为自定义(Custom)。<br><b>Tip: </b>如何搭配颜色?或许<a href="https://mashiro.top/color-thief/">这个</a>可以帮到你。*/
'id' => 'scheme_tip',
'std' => '',
'type' => 'typography ');
$options[] = array(
'name' => __('Panel main color A', 'sakura'), /*面板主色调A*/
'id' => 'dash_scheme_color_a',
'std' => "#c6742b",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions which are used to give the user a feel for the theme.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel main color B', 'sakura'),
'id' => 'dash_scheme_color_b',
'std' => "#d88e4c",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions which are used to give the user a feel for the theme.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel main color C', 'sakura'),
'id' => 'dash_scheme_color_c',
'std' => "#695644",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions which are used to give the user a feel for the theme.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel main color D', 'sakura'),
'id' => 'dash_scheme_color_d',
'std' => "#a19780",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions which are used to give the user a feel for the theme.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel icon color——base', 'sakura'), /*面板图标配色——base*/
'id' => 'dash_scheme_color_base',
'std' => "#e5f8ff",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions used to color any SVG icons.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel icon color——focus', 'sakura'),
'id' => 'dash_scheme_color_focus',
'std' => "#fff",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions used to color any SVG icons.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Panel icon color——current', 'sakura'),
'id' => 'dash_scheme_color_current',
'std' => "#fff",
'desc' => __('<i>(array) (optional)</i> An array of CSS color definitions used to color any SVG icons.', 'sakura'),
'type' => "color",
);
$options[] = array(
'name' => __('Other custom panel styles(CSS)', 'sakura'), /*其他自定义面板样式(CSS)*/
'desc' => __('If you need to adjust other styles of the panel, put the style here.', 'sakura'), /*如果还需要对面板其他样式进行调整可以把style放到这里*/
'id' => 'dash_scheme_css_rules',
'std' => '#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#f3f2f1}body{background-image:url(https://view.moezx.cc/images/2019/04/21/windows10-2019-4-21-i3.jpg);background-size:cover;background-repeat:no-repeat;background-attachment:fixed;}#wpcontent{background:rgba(255,255,255,.8)}',
'type' => 'textarea');
$options[] = array(
'name' => __('Login interface background image', 'sakura'), /*后台登陆界面背景图*/
'desc' => __('Use the default image if left this blank', 'sakura'), /*该地址为空则使用默认图片*/
'id' => 'login_bg',
'type' => 'upload');
$options[] = array(
'name' => __('Login interface logo', 'sakura'), /*后台登陆界面logo*/
'desc' => __('Used for login interface display', 'sakura'), /*用于登录界面显示*/
'id' => 'logo_img',
'std' => $imagepath . 'mashiro-logo-s.png',
'type' => 'upload');
$options[] = array(
'name' => __('Login/registration related settings', 'sakura'), /*登陆/注册相关设定*/
'desc' => __(' ', 'space', 'sakura'),
'id' => 'login_tip',
'std' => '',
'type' => 'typography ');
$options[] = array(
'name' => __('Specify login address', 'sakura'), /*指定登录地址*/
'desc' => __('Forcibly do not use the background address to log in, fill in the new landing page address, such as http://www.xxx.com/login [Note] Before you fill out, test your new page can be opened normally, so as not to enter the background or other problems happening', 'sakura'), /*强制不使用后台地址登陆,填写新建的登陆页面地址,比如 http://www.xxx.com/login【注意】填写前先测试下你新建的页面是可以正常打开的,以免造成无法进入后台等情况*/
'id' => 'exlogin_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Specify registered address', 'sakura'), /*指定注册地址*/
'desc' => __('This link is used on the login page as a registration entry', 'sakura'), /*该链接使用在登录页面作为注册入口,建议填写*/
'id' => 'exregister_url',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Allow users to register', 'sakura'), /*允许用户注册*/