Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
firepot
/
wp-content
/
themes
/
pure-portfolio
/
inc
/
customizer
:
front-page-options.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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';