Created
November 13, 2014 12:51
-
-
Save lmartins/d1f2a530ba525c759ab3 to your computer and use it in GitHub Desktop.
Customizer - Options to manage homepage layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'homepage' => array( | |
'existing_section' => false, | |
'args' => array( | |
'title' => __( 'HomePage Options', 'mw_theme_options' ), | |
'description' => __( 'Configure your homepage visualization options', 'mw_theme_options' ), | |
'priority' => 3 | |
), | |
'fields' => array( | |
/* | |
* ============== | |
* BLOCKS OPTIONS FOR THE HOMEPAGE | |
* ============== | |
*/ | |
'show_featured_products' => array( | |
'setting_args' => array( | |
'default' => true, | |
'type' => 'option', | |
'capability' => $thsp_cbp_capability, | |
'transport' => 'refresh', | |
), | |
'control_args' => array( | |
'label' => __( 'Show Featured Products', 'mw_theme_options' ), | |
'type' => 'checkbox', // Checkbox field control | |
'priority' => 1 | |
) | |
), | |
'show_onsale_products' => array( | |
'setting_args' => array( | |
'default' => true, | |
'type' => 'option', | |
'capability' => $thsp_cbp_capability, | |
'transport' => 'refresh', | |
), | |
'control_args' => array( | |
'label' => __( 'Show On Sale Products', 'mw_theme_options' ), | |
'type' => 'checkbox', // Checkbox field control | |
'priority' => 1 | |
) | |
), | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment