' . esc_html__( 'IMPORTANT NOTE: ', 'maxcoach' ) . '
' . esc_html__( 'These settings can be overridden by settings from Page Options Box in separator page.', 'maxcoach' ) . '
 . ')
' . esc_html__( 'Powerful header control: ', 'maxcoach' ) . '
' . esc_html__( 'These header settings for whole website. If you want use different header style for different post or page. then please go to specific section.', 'maxcoach' ) . '
',
'panel' => $panel,
'priority' => $priority++,
) );
Maxcoach_Kirki::add_section( 'header_sticky', array(
'title' => esc_html__( 'Header Sticky', 'maxcoach' ),
'panel' => $panel,
'priority' => $priority++,
) );
Maxcoach_Kirki::add_section( 'header_more_options', array(
'title' => esc_html__( 'Header More Options', 'maxcoach' ),
'panel' => $panel,
'priority' => $priority++,
) );
$header_types = Maxcoach_Header::instance()->get_type();
foreach ( $header_types as $key => $name ) {
$section_id = 'header_style_' . $key;
Maxcoach_Kirki::add_section( $section_id, array(
'title' => $name,
'panel' => $panel,
'priority' => $priority++,
) );
}