Lines: 1 to 27 of 27
<?php /** * Adds options to the customizer for WooCommerce. * * @version 3.3.0 * @package WooCommerce */ defined( 'ABSPATH' ) || exit; /* class WC_Shop_Customizer */ /* function WC_Shop_Customizer::__construct() – Constructor. */ /* function WC_Shop_Customizer::add_sections() – Add settings to the customizer. */ /* function WC_Shop_Customizer::add_frontend_scripts() – Frontend CSS styles. */ /* function WC_Shop_Customizer::add_styles() – CSS styles to improve our form. */ /* function WC_Shop_Customizer::add_scripts() – Scripts to improve our form. */ /* function WC_Shop_Customizer::sanitize_archive_display() – Sanitize the shop page & category display setting. */ /* function WC_Shop_Customizer::sanitize_default_catalog_orderby() – Sanitize the catalog orderby setting. */ /* function WC_Shop_Customizer::add_store_notice_section() – Store notice section. */ /* function WC_Shop_Customizer::add_product_catalog_section() – Product catalog section. */ /* function WC_Shop_Customizer::add_product_images_section() – Product images section. */ /* function WC_Shop_Customizer::add_checkout_section() – Checkout section. */ /* function WC_Shop_Customizer::sanitize_checkout_field_display() – Sanitize field display. */ new WC_Shop_Customizer();