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
:
theme-options.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Theme Options * * @package Pure_Portfolio */ $wp_customize->add_panel( 'pure_portfolio_theme_options', array( 'title' => esc_html__( 'Theme Options', 'pure-portfolio' ), 'priority' => 130, ) ); // Typography. require get_template_directory() . '/inc/customizer/theme-options/typography.php'; // Excerpt. require get_template_directory() . '/inc/customizer/theme-options/excerpt.php'; // Breadcrumb. require get_template_directory() . '/inc/customizer/theme-options/breadcrumb.php'; // Layout. require get_template_directory() . '/inc/customizer/theme-options/sidebar-layout.php'; // Post Options. require get_template_directory() . '/inc/customizer/theme-options/post-options.php'; // Pagination. require get_template_directory() . '/inc/customizer/theme-options/pagination.php'; // Footer Options. require get_template_directory() . '/inc/customizer/theme-options/footer-options.php';