forked from argoproject/Argo
-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
options.php
844 lines (716 loc) · 27.8 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
<?php
/**
* Largo's Options Framework configuration file
*
* Defines all of the default options and available values for Largo.
*
* @package Largo
*/
//=//
/**
* 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() {
// This gets the theme name from the stylesheet
$themename = get_option( 'stylesheet' );
$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.
*
* @return Array
*/
function optionsframework_options() {
$imagepath = get_template_directory_uri() . '/lib/options-framework/images/';
$home_templates = array();
$home_templates_data = largo_get_home_layouts();
if ( count($home_templates_data) ) {
foreach ($home_templates_data as $name => $data) {
$home_templates[ $data['path'] ] = '<img src="'.$data['thumb'].'" style="float: left; margin-right: 8px; max-width: 120px; height: auto; border: 1px solid #ddd;"><strong>'.$name.'</strong> '.$data['desc'];
}
}
$article_utility_buttons = array(
'facebook' => __('Facebook', 'largo'),
'twitter' => __('Twitter', 'largo'),
'email' => __('Email', 'largo'),
'print' => __('Print', 'largo')
);
$article_utility_buttons_defaults = array(
'facebook' => '1',
'twitter' => '1',
'email' => '1',
'print' => '1'
);
$footer_utility_buttons = array(
'ffacebook' => __('Facebook', 'largo'),
'ftwitter' => __('Twitter', 'largo'),
'femail' => __('Email', 'largo')
);
$footer_utility_buttons_defaults = array(
'ffacebook' => '1',
'ftwitter' => '1',
'femail' => '1'
);
$fb_verbs = array(
'like' => _x( 'Like', 'facebook verb', 'largo'),
'recommend' => _x( 'Recommend', 'facebook verb', 'largo'),
'share' => _x( 'Share', 'facebook verb', 'largo')
);
$region_options = array();
global $wp_registered_sidebars;
$excluded = array(
'Footer 1',
'Footer 2',
'Footer 3',
'Article Bottom',
'Header Ad Zone'
);
// Let others change the list
$excluded = apply_filters( 'largo_excluded_sidebars', $excluded );
foreach( $wp_registered_sidebars as $sidebar_id => $sidebar ) {
//check if excluded
if ( in_array( $sidebar_id, $excluded ) || in_array( $sidebar['name'], $excluded ) ) {
continue;
}
$region_options[$sidebar_id] = $sidebar['name'];
}
$options = array();
$widget_options = array();
/**
* Basic Options
*/
$options[] = array(
'name' => __('Basic Settings', 'largo'),
'type' => 'heading');
$options[] = array(
'name' => __('Site Description', 'largo'),
'desc' => __('Enter a <strong>short blurb about your site</strong>. This is used in a sidebar widget', 'largo'),
'id' => 'site_blurb',
'std' => '',
'type' => 'textarea');
$options[] = array(
'name' => __( 'Feed URL', 'largo' ),
'desc' => __( 'Enter the <strong>URL for your primary RSS feed.</strong> You can override the default if you use Feedburner or some other service to generate or track your RSS feed', 'largo' ),
'id' => 'rss_link',
'std' => get_feed_link(),
'type' => 'text');
$options[] = array(
'name' => __('Donate Button', 'largo'),
'desc' => __('<strong>Show</strong> a button in the top header to link to your donation page or form.', 'largo'),
'id' => 'show_donate_button',
'type' => 'checkbox');
$options[] = array(
'desc' => __('Enter the <strong>link to your donation page</strong> or form (include http://).', 'largo'),
'id' => 'donate_link',
'std' => '',
'class' => 'hidden',
'type' => 'text');
$options[] = array(
'desc' => __('Enter the <strong>text for the donate button</strong> (e.g. - Support Us).', 'largo'),
'id' => 'donate_button_text',
'std' => __('Donate Now', 'largo'),
'class' => 'hidden',
'type' => 'text');
$options[] = array(
'name' => __('Copyright Message', 'largo'),
// translators: %d is a literal here. It isn't replaced with anything.
'desc' => __('Enter the <strong>copyright and credit information</strong> to display in the footer. You can use <code>%d</code> to output the current year.', 'largo'),
'id' => 'copyright_msg',
'std' => sprintf(
// translators: %d is literal. %1$s is the site name.
__( '© Copyright %d, %1$s', 'largo'),
get_bloginfo('name')
),
'type' => 'textarea');
$options[] = array(
'name' => __('Google Analytics', 'largo'),
'desc' => __('Enter your <strong>Google Analytics ID (UA-XXXXXXXX-X)</strong> and the code will be included in the footer.', 'largo'),
'id' => 'ga_id',
'std' => '',
'type' => 'text');
$options[] = array(
'name' => __('Word to use for "Posts"', 'largo'),
'desc' => __('WordPress calls single article pages "posts" but you might prefer to use another name. <strong>Enter the singular and plural forms</strong> of the word you want to use here.', 'largo'),
'type' => 'info');
$options[] = array(
'desc' => __('<strong>Singular Form</strong> (e.g. - post, story, article)', 'largo'),
'id' => 'posts_term_singular',
'std' => 'Post',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Plural form</strong> (e.g. - posts, stories, articles)', 'largo'),
'id' => 'posts_term_plural',
'std' => 'Posts',
'type' => 'text');
$options[] = array(
'name' => __('Social Media Links', 'largo'),
'desc' => __('Enter the links for your organization\'s primary social media accounts. To change social media settings for a user, view their <strong>edit profile</strong> screen.', 'largo'),
'type' => 'info');
$options[] = array(
'desc' => __('<strong>Link to Facebook Page</strong> (https://www.facebook.com/username)', 'largo'),
'id' => 'facebook_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Twitter Profile</strong> (https://twitter.com/username)', 'largo'),
'id' => 'twitter_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to YouTube Channel</strong> (http://www.youtube.com/user/username)', 'largo'),
'id' => 'youtube_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Instagram Page</strong> (http://instagram.com/username)', 'largo'),
'id' => 'instagram_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to LinkedIn Group or Profile</strong> (http://www.linkedin.com/in/username/)', 'largo'),
'id' => 'linkedin_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Tumblr</strong> (http://yoursite.tumblr.com)', 'largo'),
'id' => 'tumblr_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Pinterest Page</strong> (http://pinterest.com/username)', 'largo'),
'id' => 'pinterest_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Github Page</strong> (http://github.com/username)', 'largo'),
'id' => 'github_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('<strong>Link to Flickr Photostream</strong> (http://www.flickr.com/photos/username/)', 'largo'),
'id' => 'flickr_link',
'std' => '',
'type' => 'text');
$options[] = array(
'desc' => __('By default, a row of social media icons is shown in the site footer. <strong>Check this box if you want to show them in the header as well</strong>. Note that they will only display on desktops and larger tablets.', 'largo'),
'id' => 'show_header_social',
'type' => 'checkbox');
$options[] = array(
'name' => __('Single Post Options', 'largo'),
'type' => 'info');
$options[] = array(
'desc' => __('<p><strong>Would you like to display share icons at the top of single posts?</strong></p> <p>By default social icons appear at the top of single posts but you can choose to not show them at all.</p>', 'largo'),
'id' => 'single_social_icons',
'std' => '1',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Select the <strong>share icons</strong> to display at the top of single posts.', 'largo'),
'id' => 'article_utilities',
'std' => $article_utility_buttons_defaults,
'type' => 'multicheck',
'options' => $article_utility_buttons,
);
$options[] = array(
'desc' => __('<strong>Would you like to display share icons in a floating bar beside posts using the single-column post template?</strong>', 'largo'),
'id' => 'single_floating_social_icons',
'std' => '1',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('<strong>Verb to use</strong> for Facebook buttons?', 'largo'),
'id' => 'fb_verb',
'std' => 'like',
'type' => 'select',
'class' => 'mini',
'options' => $fb_verbs,
);
/**
* Images Options
*/
$options[] = array(
'name' => __('Theme Images', 'largo'),
'type' => 'heading',
);
$options[] = array(
'type' => 'info',
'desc' => __('Information about these options can be found in <a href="https://largo.readthedocs.io/users/prelaunchchecklist.html">the pre-launch checklist</a> and <a href="https://largo.readthedocs.io/users/themeoptions.html#theme-images">the theme images options</a>.', 'largo'),
);
$options[] = array(
'name' => __('Upload a Square Thumbnail Image (200x200px minimum)', 'largo'),
'desc' => __('This is a default image used for Facebook posts when you do not set a featured image for your posts. We also use it as a bookmark icon for Apple devices.', 'largo'),
'id' => 'logo_thumbnail_sq',
'type' => 'upload'
);
$options[] = array(
'name' => __('Upload a Favicon', 'largo'),
'desc' => __('This is the small icon that appears in browser tabs and in some feed readers and other applications. Favicons must be an .ico file and are typically 16x16px square.', 'largo'),
'id' => 'favicon',
'type' => 'upload'
);
$options[] = array(
'name' => __('Header Image', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('<strong>Use only text</strong> in the place of a banner image (uses site title and description).', 'largo'),
'id' => 'no_header_image',
'std' => '1',
'type' => 'checkbox',
);
$options[] = array(
'name' => __('Small Banner Image (768px wide)', 'largo'),
'desc' => __('Used for viewports below 768px wide (mostly phones and some tablets). Recommended height: 240px.', 'largo'),
'id' => 'banner_image_sm',
'type' => 'upload',
);
$options[] = array(
'name' => __('Medium Banner Image (980px wide)', 'largo'),
'desc' => __('Used for viewports between 768px and 980 px (mostly tablets). Recommended height: 180px.', 'largo'),
'id' => 'banner_image_med',
'type' => 'upload',
);
$options[] = array(
'name' => __('Large Banner Image (1170px wide)', 'largo'),
'desc' => __('Used for viewports above 980 px (landscape tablets and desktops). Recommended height: 150px.', 'largo'),
'id' => 'banner_image_lg',
'type' => 'upload',
);
$options[] = array(
'name' => __('Sticky Header Logo', 'largo'),
'desc' => __('Used in the sticky navigation. This image should be 100px tall and at least 100px wide. If no logo is provided, the site name will be displayed. To display an abbreviated site name in the sticky navigation see the "Navigation" options tab above.', 'largo'),
'id' => 'sticky_header_logo',
'type' => 'upload',
);
/**
* Layout Options
*/
$options[] = array(
'name' => __('Layout', 'largo'),
'type' => 'heading',
);
if ( count( $home_templates ) ) {
$home_std = 'HomepageBlog';
$home_template = of_get_option('home_template');
if ( empty( $home_template ) ) {
if ( of_get_option('homepage_layout') == '3col' ) {
$home_std = 'LegacyThreeColumn';
}
}
$options[] = array(
'name' => __('Home Template', 'largo'),
'desc' => __('<strong>Select the layout to use for the top of the homepage.</strong> These are Home Templates, defined much like post/page templates.', 'largo'),
'id' => 'home_template',
'std' => $home_std,
'type' => 'radio',
'options' => $home_templates
);
}
$options[] = array(
'name' => __('Sticky Posts', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('Show sticky posts box on homepage? If checked, you will need to set at least one post as sticky for this box to appear.', 'largo'),
'id' => 'show_sticky_posts',
'std' => '1',
'type' => 'checkbox',
);
$options[] = array(
'name' => __('Homepage Bottom', 'largo'),
'desc' => __('<strong>Select the layout to use for the bottom of the homepage.</strong> Largo supports three options: a single column list of recent posts with photos and excerpts, a two column widget area, or nothing whatsoever', 'largo'),
'id' => 'homepage_bottom',
'std' => 'list',
'type' => 'images',
'options' => array(
'list' => $imagepath . 'list.png',
'widgets' => $imagepath . 'widgets.png',
'none' => $imagepath . 'none.png',
)
);
$options[] = array(
'name' => __('Other Homepage Display Options', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('<strong>Number of posts</strong> to display in the main loop on the homepage', 'largo'),
'id' => 'num_posts_home',
'std' => 10,
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Categories to include or exclude</strong> in the main loop on the homepage (comma-separated list of values, see: http://bit.ly/XmDGgd for correct format).', 'largo'),
'id' => 'cats_home',
'std' => '',
'type' => 'text',
);
$options[] = array(
'name' => __('Single Article Template', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('Starting with version 0.4, Largo introduced a new single-post template that more prominently highlights article content, which is the default. For backward compatibility, the pre-0.3 version is also available.', 'largo'),
'id' => 'single_template',
'std' => 'normal',
'type' => 'select',
'options' => array(
'normal' => 'One Column (Standard Layout)',
'classic' => 'Two Column (Classic Layout)',
)
);
$options[] = array(
'name' => __('Category Options', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __( 'Hide the featured posts area on category pages?', 'largo' ),
'id' => 'hide_category_featured',
'std' => '0',
'type' => 'checkbox',
);
$widget_options[] = $options[] = array(
'name' => __('Sidebar Options', 'largo'),
'type' => 'info',
);
$widget_options[] = $options[] = array(
'desc' => __('By default Largo has two sidebars. One is used for single pages and posts and the other is used for everything else (including the homepage). Check this box if you would like to have a third sidebar to be used in place of the main sidebar on archive pages (category, tag, author and series pages).', 'largo'),
'id' => 'use_topic_sidebar',
'std' => '0',
'type' => 'checkbox',
);
$widget_options[] = $options[] = array(
'desc' => __('Include an additional widget region ("sidebar") just above the site footer region', 'largo'),
'id' => 'use_before_footer_sidebar',
'std' => '0',
'type' => 'checkbox',
);
$widget_options[] = $options[] = array(
'desc' => __('Enter names of <strong>additional sidebar regions</strong> (one per line) you\'d like post authors to be able to choose to display on their posts.', 'largo'),
'id' => 'custom_sidebars',
'std' => '',
'type' => 'textarea',
);
$widget_options[] = $options[] = array(
'name' => __('Footer Layout', 'largo'),
'desc' => __('<strong>Select the layout to use for the footer.</strong> The default is a 3 column footer with a wide center column. Alternatively you can choose to have 3 or 4 equal columns. Each column is a widget area that can be configured under the Appearance > Widgets menu.', 'largo'),
'id' => 'footer_layout',
'std' => '3col-default',
'type' => 'images',
'options' => array(
'3col-default' => $imagepath . 'footer-3col-lg-center.png',
'3col-equal' => $imagepath . 'footer-3col-equal.png',
'4col' => $imagepath . 'footer-4col.png',
'4col-asymm' => $imagepath . 'footer-4col-asymm.png',
'1col' => $imagepath . 'footer-1col.png',
// Want to add something to this list in a child theme? Use the largo_options filter!
)
);
/*
* Navigation
*/
$options[] = array(
'name' => __('Navigation', 'largo'),
'type' => 'heading'
);
$options[] = array(
'name' => __( 'Sticky navigation', 'largo' ),
'desc' => __( 'By default, a floating/sticky navigation bar is visible on all pages for mobile screen sizes. The sticky navigation bar will disappear when a user scrolls down and reappear when a user begins to scroll up. When the main navigation is visible, the sticky navigation will disappear. This feature can be deactivated for larger screens, but we typically recommend sticking with the default behavior.', 'largo' ),
'type' => 'info'
);
$options[] = array(
'desc' => __( 'Enable sticky navigation?', 'largo' ),
'id' => 'sticky_nav_display',
'std' => '1',
'type' => 'checkbox'
);
$options[] = array(
'desc' => __( 'Hide the main navigation on article pages and display only the sticky navigation on article pages', 'largo' ),
'id' => 'main_nav_hide_article',
'std' => '0',
'type' => 'checkbox'
);
$options[] = array(
'desc' => __( '<strong>NOTE:</strong> If the main navigation is hidden on article pages, <strong>readers will only see a small logo in the left-hand corner when entering the site and you will not be able to run a banner ad above the navigation.</strong>', 'largo' ),
'type' => 'info'
);
$options[] = array(
'name' => __( 'Sticky navigation overflow', 'largo' ),
'desc' => __( 'Enter the label used for the navigation menu that houses any navigation links that would otherwise cause the navigation to wrap onto multiple lines.', 'largo' ),
'id' => 'nav_overflow_label',
'std' => __( 'More', 'largo' ),
'type' => 'text',
);
$options[] = array(
'name' => __( 'Alternate site name for sticky navigation', 'largo' ),
'desc' => __( 'If your site name is especially long, use this field to set an abbreviation or shorter version for use in the sticky nav on small screens.', 'largo' ),
'id' => 'nav_alt_site_name',
'std' => '',
'type' => 'text',
);
$options[] = array(
'name' => __('Menu Options', 'largo'),
'desc' => __('<strong>Show</strong> the "Don\'t Miss" menu under the main site navigation. Add links to this menu under <strong>Appearance > Menus</strong>.', 'largo'),
'id' => 'show_dont_miss_menu',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enter the <strong>label that appears in front of the menu links in the "Don\'t Miss" menu</strong>. You can delete this default and no label will appear.', 'largo'),
'id' => 'dont_miss_label',
'std' => __('Don\'t Miss', 'largo'),
'type' => 'text',
);
$options[] = array(
'desc' => __('Enter the <strong>label that appears before the menu links in the Footer Nav Menu</strong>. You can delete this default and no label will appear.', 'largo'),
'id' => 'footer_menu_label',
'std' => get_bloginfo('name'),
'type' => 'text',
);
/*
* Advanced
*/
$options[] = array(
'name' => __('Advanced', 'largo'),
'type' => 'heading',
);
$options[] = array(
'desc' => __('Enable Custom LESS to CSS For Theme Customization.', 'largo'),
'id' => 'less_enabled',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enable "Series" taxonomy.', 'largo'),
'id' => 'series_enabled',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enable Custom Landing Pages for Series/Project Pages. Requires "Series" taxonomy to be enabled.', 'largo'),
'id' => 'custom_landing_enabled',
'std' => '0',
'class' => 'hidden',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Default region in lefthand column of Landing Pages', 'largo'),
'id' => 'landing_left_region_default',
'std' => 'sidebar-main',
'type' => 'select',
'class' => 'hidden',
'options' => $region_options,
);
$options[] = array(
'desc' => __('Default region in righthand column of Landing Pages', 'largo'),
'id' => 'landing_right_region_default',
'std' => 'sidebar-main',
'type' => 'select',
'class' => 'hidden',
'options' => $region_options,
);
$options[] = array(
'desc' => __('Enable Optional Leaderboard Ad Zone.', 'largo'),
'id' => 'leaderboard_enabled',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enable Optional Header Widget Area.', 'largo'),
'id' => 'header_widget_enabled',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enable "Post Types" taxonomy.', 'largo'),
'id' => 'post_types_enabled',
'std' => '0',
'type' => 'checkbox',
);
// hidden field logs largo version to facilitate tracking which set of options are stored
$largo = wp_get_theme('largo');
$options[] = array(
'id' => 'largo_version',
'std' => $largo->get('Version'),
'type' => 'text',
'class' => 'hidden',
);
// this is wrapped in a function_exists because optionsframework_options is called during after_switch_theme, which is not yet an admin screen, so the function is not defined
if ( function_exists( 'get_current_screen' ) ) {
$screen = get_current_screen();
if ( is_object( $screen ) && $screen->base == 'widgets' ) {
return $widget_options;
}
}
/* Disclaimer */
$options[] = array(
'name' => __('Disclaimer', 'largo'),
'desc' => __('Enable Disclaimer Widget.', 'largo'),
'id' => 'disclaimer_enabled',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Enter a default disclaimer', 'largo'),
'id' => 'default_disclaimer',
'std' => '',
'type' => 'textarea',
);
/* Search Options */
$options[] = array(
'name' => __('Search options', 'largo'),
'desc' => __('Replace WordPress search with Google Custom Search', 'largo'),
'id' => 'use_gcs',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('Search engine ID (something like 012174647732932797336:f2lixuynrs0) ', 'largo'),
'id' => 'gcs_id',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('Google Custom Search typically returns better results than the search engine built into WordPress. You can get your ID and configure it at <a href="https://www.google.com/cse/create/new">https://www.google.com/cse/create/new</a>.', 'largo'),
'id' => 'gcs_help',
'std' => '',
'type' => 'info',
);
$options[] = array(
'name' => __('Site verification', 'largo'),
'desc' => __('<strong>Twitter Account ID.</strong> This is used for verifying your site for Twitter Analytics. This is NOT your username, it will be a 9 digit number.', 'largo'),
'id' => 'twitter_acct_id',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Google site verification meta tag.</strong> Used to verify a site in Google Webmaster Tools. This will be a long string of numbers and letters.', 'largo'),
'id' => 'google_site_verification',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Facebook admins meta tag.</strong> This is a comma-separated list of numerical FB user IDs you want to allow to access Facebook insights for your site.', 'largo'),
'id' => 'fb_admins',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Facebook app ID meta tag.</strong> This is a numerical app ID that will allow Facebook to capture insights for any social plugins active on your site and display them in your Facebook app/page insights.', 'largo'),
'id' => 'fb_app_id',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Facebook Tracking Pixel ID.</strong> Unique numerical ID (one per Facebook Ads account) to enable tracking of site visitors and targeting of specific Facebook ads at your audience.', 'largo'),
'id' => 'fb_tracking_pixel',
'std' => '',
'type' => 'text',
);
$options[] = array(
'desc' => __('<strong>Bitly site verification.</strong> This is a string of numbers and letters used to verify your site with bitly analytics.', 'largo'),
'id' => 'bitly_verification',
'std' => '',
'type' => 'text',
);
$options[] = array(
'name' => __('SEO Options', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('Use noindex for all archive pages (default is to use noindex for just date archives).', 'largo'),
'id' => 'noindex_archives',
'std' => '0',
'type' => 'checkbox',
);
$options[] = array(
'desc' => __('<strong>404 page text.</strong> This will be displayed on the 404 page, which is shown when people try to navigate to a page on your site that does not exist.', 'largo'),
'id' => '404_message',
'std' => '',
'type' => 'textarea',
);
$options[] = array(
'name' => __('Byline Options', 'largo'),
'type' => 'info',
);
$options[] = array(
'desc' => __('Enable display of job titles in bylines and author biographies?', 'largo'),
'id' => 'show_job_titles',
'std' => '0',
'type' => 'checkbox',
);
return apply_filters('largo_options', $options);
}
/*
* This is an example of how to add custom scripts to the options panel.
* This example shows/hides an option when a checkbox is clicked.
*/
add_action('optionsframework_custom_scripts', 'optionsframework_custom_scripts');
/**
* This function prints Javascript on the Theme Options admin page to control the behavior
* of certain options that depend or require other options.
*
* For example, you can not use Custom Landing Pages unless Series taxonomy is enabled. So,
* this script will hide the Custom Landing Pages option until the Series taxonomy checkbox
* is enabled.
*/
function optionsframework_custom_scripts() { ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
// show/hide don't miss.
$('#show_dont_miss_menu').click(function() {
$('#section-dont_miss_label').fadeToggle(400);
});
if ($('#show_dont_miss_menu:checked').val() !== undefined) {
$('#section-dont_miss_label').show();
}
// show/hide sticky nav.
$('#show_sticky_nav').click(function() {
$('#section-show_sitename_in_sticky_nav').fadeToggle(400);
});
if ($('#show_sticky_nav:checked').val() !== undefined) {
$('#section-show_sitename_in_sticky_nav').show();
}
// show/hide donate button.
$('#show_donate_button').click(function() {
$('#section-donate_link').fadeToggle(400);
$('#section-donate_button_text').fadeToggle(400);
});
if ($('#show_donate_button:checked').val() !== undefined) {
$('#section-donate_link').show();
$('#section-donate_button_text').show();
}
// show/hide disclaimer.
$('#disclaimer_enabled').click(function() {
$('#section-default_disclaimer').fadeToggle(400);
});
if ($('#disclaimer_enabled:checked').val() == undefined) {
$('#section-default_disclaimer').hide();
}
// show/hide show tags.
$('#show_tags').click(function() {
$('#section-tag_limit').fadeToggle(400);
});
if ($('#show_tags:checked').val() !== undefined) {
$('#section-tag_limit').show();
}
// show/hide custom series landing pages.
$('#series_enabled').click(function() {
$('#section-custom_landing_enabled').fadeToggle(400);
$('#section-landing_left_region_default').fadeToggle(400);
$('#section-landing_right_region_default').fadeToggle(400);
$('#section-custom_landing_enabled input').removeAttr('checked');
});
if ($('#series_enabled:checked').val() !== undefined) {
$('#section-custom_landing_enabled').show();
$('#section-landing_left_region_default').show();
$('#section-landing_right_region_default').show();
}
});
</script>
<?php
}