PluginProbe
Customify / 2.0.0
Customify v2.0.0
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / settings / typography.php

typography.php in Customify 2.0.0, at settings/typography.php

50 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 //not used yet - moved them to a per gallery option
3
4 return array(
5 'type' => 'postbox',
6 'label' => 'Typography Settings',
7 'options' => array(
8 'typography' => array(
9 'label' => __( 'Enable Typography Options', 'customify' ),
10 'default' => true,
11 'type' => 'switch',
12 'show_group' => 'typography_group',
13 'display_option' => true
14 ),
15
16 'typography_group' => array(
17 'type' => 'group',
18 'options' => array(
19 'typography_standard_fonts' => array(
20 'name' => 'typography_standard_fonts',
21 'label' => __( 'Use Standard fonts:', 'customify' ),
22 'desc' => __( 'Would you like them?', 'customify' ),
23 'default' => true,
24 'type' => 'switch',
25 ),
26 'typography_google_fonts' => array(
27 'name' => 'typography_google_fonts',
28 'label' => __( 'Use Google fonts:', 'customify' ),
29 'desc' => __( 'Would you like them?', 'customify' ),
30 'default' => true,
31 'type' => 'switch',
32 'show_group' => 'typography_google_fonts_group',
33 'display_option' => true
34 ),
35 'typography_google_fonts_group' => array(
36 'type' => 'group',
37 'options' => array(
38 'typography_group_google_fonts' => array(
39 'name' => 'typography_standard_fonts',
40 'label' => __( 'Group Google fonts:', 'customify' ),
41 'desc' => __( 'You can chose to see the google fonts in groups', 'customify' ),
42 'default' => true,
43 'type' => 'switch',
44 ),
45 )
46 )
47 )
48 )
49 )
50 ); # config