function vahanmilap_customize($wp_customize) {

    // HERO SECTION
    $wp_customize->add_section('hero_section', [
        'title' => 'Hero Section'
    ]);

    $wp_customize->add_setting('hero_title');
    $wp_customize->add_control('hero_title', [
        'label' => 'Hero Title',
        'section' => 'hero_section',
        'type' => 'text'
    ]);

    $wp_customize->add_setting('hero_subtitle');
    $wp_customize->add_control('hero_subtitle', [
        'label' => 'Hero Subtitle',
        'section' => 'hero_section',
        'type' => 'text'
    ]);

}
add_action('customize_register', 'vahanmilap_customize');
function create_jobs_posttype() {
    register_post_type('jobs',
        array(
            'labels' => array(
                'name' => 'Jobs'
            ),
            'public' => true,
            'has_archive' => true,
            'supports' => array('title', 'editor'),
        )
    );
}
add_action('init', 'create_jobs_posttype');<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://vahanmilap.in/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://vahanmilap.in/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://vahanmilap.in/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
