Last active
August 29, 2015 14:02
-
-
Save Clorith/7e393c1b330de69c9367 to your computer and use it in GitHub Desktop.
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
<?php | |
$css->add( | |
'theme_primary', // Customize name (must be unique) | |
'color', // Customize type, (section or whatever you want, only section has a custom use at this point) | |
array( | |
'label' => __( 'Main color' ), // Label for the option | |
'object' => 'html, body', // The css DOM object to style | |
'selector' => 'color', // The css attribute to style | |
'default' => '#000000', // The default value | |
'type' => 'color', // The controller type | |
'section' => 'colors' // Customize API section | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment