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');