Skip to content

Instantly share code, notes, and snippets.

@JefMari
Created May 21, 2019 22:45
Show Gist options
  • Save JefMari/ae97b54d2a2882e77fc36a4a063e56f0 to your computer and use it in GitHub Desktop.
Save JefMari/ae97b54d2a2882e77fc36a4a063e56f0 to your computer and use it in GitHub Desktop.
teamfridays_add_customize
function main_theme($wp_customize)
{
// Declare panel
$wp_customize->add_panel('teamfriday_theme', array(
'title' => 'TeamFridays Theme',
'description' => 'This is panel Description',
'priority' => 1,
));
// Main Banner Section
$wp_customize->add_section('main_banner', array(
'title' => 'Main Banner',
'priority' => 1,
'panel' => 'teamfriday_theme',
));
// Image
$wp_customize->add_setting('image', array(
'default' => get_template_directory_uri() . '/assets/images/mbr-1920x1220.jpg',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
));
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'image_options', array(
'label' => 'Image Control',
'section' => 'main_banner',
'settings' => 'image',
)));
// Text
$wp_customize->add_setting('text', array(
'default' => 'A FULL-SERVICE GLOBAL AGENCY.',
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
));
$wp_customize->add_control('text_options', array(
'label' => 'Title',
'type' => 'text',
'section' => 'main_banner',
'settings' => 'text',
));
}
add_action('customize_register', 'main_theme');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment