Skip to content

Instantly share code, notes, and snippets.

@wenthemes
Created August 25, 2015 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wenthemes/3e902bd90c7e88e81feb to your computer and use it in GitHub Desktop.
Save wenthemes/3e902bd90c7e88e81feb to your computer and use it in GitHub Desktop.
<?php
function theme_slug_customize_register( $wp_customize ) {
$wp_customize->add_section( 'sample_section',
array(
'title' => 'Sample Section',
'panel' => 'nav_menus',
)
);
$wp_customize->add_setting( 'sample_menu_option_one',
array(
'capability' => 'edit_theme_options',
'priority' => 1,
)
);
$wp_customize->add_control( 'sample_menu_option_one',
array(
'label' => 'Menu Option One',
'section' => 'sample_section',
)
);
add_action( 'customize_register', 'theme_slug_customize_register' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment