File "front-page-options.php"
Full Path: /home/pumpbmko/public_html/wp-content/themes/pure-portfolio/inc/customizer/front-page-options.php
File size: 890 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Front Page Options
*
* @package Pure_Portfolio
*/
$wp_customize->add_panel(
'pure_portfolio_front_page_options',
array(
'title' => esc_html__( 'Front Page Options', 'pure-portfolio' ),
'priority' => 130,
)
);
// Banner Section.
require get_template_directory() . '/inc/customizer/front-page-options/banner.php';
// Skill Section.
require get_template_directory() . '/inc/customizer/front-page-options/skill.php';
// Experience Section.
require get_template_directory() . '/inc/customizer/front-page-options/experience.php';
// Gallery Section.
require get_template_directory() . '/inc/customizer/front-page-options/gallery.php';
// Blog Section.
require get_template_directory() . '/inc/customizer/front-page-options/blog.php';
// CTA Section.
require get_template_directory() . '/inc/customizer/front-page-options/cta.php';