51 lines
1.7 KiB
PHP
51 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*----------------------------
|
|
Zoom Meeting
|
|
----------------------------*/
|
|
Kirki::add_section( 'upstudy_zoom_meeting_archive_page_section', array(
|
|
'title' => esc_html__( 'Zoom Archive Page', 'upstudy' ),
|
|
'panel' => 'upstudy_zoom_meeting_panel',
|
|
) );
|
|
Kirki::add_field( 'upstudy_theme_config', [
|
|
'type' => 'text',
|
|
'settings' => 'zoom_archive_page_title',
|
|
'label' => esc_html__( 'Custom Archive Page Title', 'upstudy' ),
|
|
'section' => 'upstudy_zoom_meeting_archive_page_section',
|
|
'default' => esc_html__('Zoom Meeting', 'upstudy'),
|
|
'transport' => 'refresh',
|
|
] );
|
|
Kirki::add_field( 'upstudy_theme_config', [
|
|
'type' => 'toggle',
|
|
'settings' => 'upstudy_zm_archive_hotted',
|
|
'label' => esc_html__( 'Hosted?', 'upstudy' ),
|
|
'section' => 'upstudy_zoom_meeting_archive_page_section',
|
|
'default' => '1',
|
|
] );
|
|
|
|
Kirki::add_field( 'upstudy_theme_config', [
|
|
'type' => 'toggle',
|
|
'settings' => 'upstudy_zm_archive_start_date',
|
|
'label' => esc_html__( 'Start Date?', 'upstudy' ),
|
|
'section' => 'upstudy_zoom_meeting_archive_page_section',
|
|
'default' => '1',
|
|
] );
|
|
|
|
Kirki::add_field( 'upstudy_theme_config', [
|
|
'type' => 'toggle',
|
|
'settings' => 'upstudy_zm_archive_time_zone',
|
|
'label' => esc_html__( 'Timezone?', 'upstudy' ),
|
|
'section' => 'upstudy_zoom_meeting_archive_page_section',
|
|
'default' => '1',
|
|
] );
|
|
|
|
Kirki::add_field( 'upstudy_theme_config', [
|
|
'type' => 'toggle',
|
|
'settings' => 'upstudy_zm_excerpt',
|
|
'label' => esc_html__( 'Excerpt?', 'upstudy' ),
|
|
'section' => 'upstudy_zoom_meeting_archive_page_section',
|
|
'default' => false,
|
|
] );
|
|
|
|
|