Server IP : 192.158.238.246 / Your IP : 3.129.89.50 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/open-shop/customizer/ |
Upload File : |
<?php /** * all customizer setting includeed * * @param * @return mixed|string */ function open_shop_customize_register( $wp_customize ){ //Registered panel and section require OPEN_SHOP_THEME_DIR . '/customizer/register-panels-and-sections.php'; //site identity require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/set-identity.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/header.php'; //Header require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/above-header.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/main-header.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/loader.php'; //Footer require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/above-footer.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/widget-footer.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/bottom-footer.php'; //social Icon require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/social-icon/social-icon.php'; //Blog require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/blog/blog.php'; //Color Option require OPEN_SHOP_THEME_DIR . '/customizer/section/color/global-color.php'; //woo-product require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/product.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/single-product.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/cart.php'; require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/shop.php'; // scroller if ( class_exists('Open_Shop_Customize_Control_Scroll')){ $scroller = new Open_Shop_Customize_Control_Scroll(); } } add_action('customize_register','open_shop_customize_register');