Skip to content

Instantly share code, notes, and snippets.

@Clorith
Last active August 29, 2015 14:02
Show Gist options
  • Save Clorith/7e393c1b330de69c9367 to your computer and use it in GitHub Desktop.
Save Clorith/7e393c1b330de69c9367 to your computer and use it in GitHub Desktop.
<?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