Last active
December 21, 2015 15:49
-
-
Save mattonomics/6329393 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 | |
add_action('customize_register', 'customize_that_does_not_work'); | |
function customize_that_does_not_work($wp_customize) { | |
$wp_customize->add_section('testing_wp_customize',array( | |
'title' => 'Testing WP Customize', | |
'description' => 'Please Lort let this work.', | |
)); | |
$wp_customize->add_setting('test_wp_customize[first][second]', array( | |
'default' => true, | |
'type' => 'option' | |
)); | |
$wp_customize->add_control('test_wp_customize[first][second]', array( | |
'label' => 'Testing this thang.', | |
'type' => 'checkbox', | |
'section' => 'testing_wp_customize' | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment