Skip to content

Instantly share code, notes, and snippets.

@davidshq
Created January 6, 2016 16:51
Show Gist options
  • Save davidshq/6f5ba3bc544ca2b5cfc0 to your computer and use it in GitHub Desktop.
Save davidshq/6f5ba3bc544ca2b5cfc0 to your computer and use it in GitHub Desktop.
WordPress Customizer Live Preview / Save / Sanitize Example
<?php
$wp_customize->add_setting( 'setting_id', array(
'type' => 'theme_mod', // or 'option'
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed
'default' => '',
'transport' => 'refresh', // or postMessage
'sanitize_callback' => '',
'sanitize_js_callback' => '', // Essentially converts to JSON
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment