Seach

customizer example

 <?php

//https://maddisondesigns.com/2017/05/the-wordpress-customizer-a-developers-guide-part-1/

function diwp_theme_customize_options( $wp_customize)

{

    $wp_customize->add_panel( 'diwp_option_panel', array(

 

            'title' => 'Contact info',

            'priority' => 0,

            'capability' => 'edit_theme_options', 

            'theme_supports' => '',

            'active_callback' => ''

));

 

    

    $wp_customize->add_section( 'diwp_general_option_section', array(

 

            'title' => 'Contact options',

            'panel' => 'diwp_option_panel',

            'capability' => 'edit_theme_options',

            'theme_supports' => '',

            'active_callback' => '',

            'description_hidden' => false

 ));

    

    

    $wp_customize->add_setting( 'diwp_site_title', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));

    

    $wp_customize->add_control( 'diwp_site_title', array(

            'label'   => 'Phone Number',

            'description' => 'Add Phone Number',

            'section' => 'diwp_general_option_section',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'Enter Site Title' )

 )); 

    

    

    $wp_customize->add_setting( 'diwp_email', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));


    

    

    

    

    $wp_customize->add_control( 'diwp_email', array(

            'label'   => 'Email Addres',

            'description' => 'Add Email',

            'section' => 'diwp_general_option_section',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'Enter Site Title' )

 )); 

    

    

  $wp_customize->add_setting( 'diwp_working_hours', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));

    

    

    $wp_customize->add_control( 'diwp_working_hours', array(

            'label'   => 'Working hours',

            'description' => 'Add Working hours',

            'section' => 'diwp_general_option_section',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'Enter Site Title' )

 )); 

    

    $wp_customize->add_section( 'diwp_general_option_socialmedia', array(

 

            'title' => 'Social media contact',

            'panel' => 'diwp_option_panel',

            'capability' => 'edit_theme_options',

            'theme_supports' => '',

            'active_callback' => '',

            'description_hidden' => false

 ));

    

    $wp_customize->add_setting( 'facebook', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));


    $wp_customize->add_control( 'facebook', array(

            'label'   => 'Facebook',

            'description' => 'Add Facebook address',

            'section' => 'diwp_general_option_socialmedia',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'add facebook address' )

 )); 

    

     $wp_customize->add_setting( 'twitter', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));


    $wp_customize->add_control( 'twitter', array(

            'label'   => 'Twitter',

            'description' => 'Add twitter address',

            'section' => 'diwp_general_option_socialmedia',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'add twitter address' )

 )); 

    

    

     $wp_customize->add_setting( 'youtube', array(

 

            'default' => ' ',

            'type'      => 'theme_mod', 

            'transport' => 'refresh',  

            'theme_supports' => ''

 ));


    $wp_customize->add_control( 'youtube', array(

            'label'   => 'Twitter',

            'description' => 'Add youtube address',

            'section' => 'diwp_general_option_socialmedia',

            'type' => 'text',

            'input_attrs' => array( 'placeholder' => 'add youtube address' )

 )); 

    

    

    

    

    

    

    

}

add_action( 'customize_register', 'diwp_theme_customize_options' );

No comments: