false, 'flex-width' => false, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults ); add_theme_support( 'custom-background', array ('default-color' => '#ffffff') ); add_theme_support( 'automatic-feed-links' ); load_theme_textdomain( 'ayacoffeeshop', get_template_directory() . '/languages' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'title-tag' ); add_editor_style( array( 'css/editor-style.css', get_template_directory_uri() . '/css/font-awesome.css', ayacoffeeshop_fonts_url() ) ); add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); $GLOBALS['content_width'] = 900; register_nav_menus( array( 'primary' => __( 'Primary Menu', 'ayacoffeeshop' ), 'footer' => __( 'Footer Menu', 'ayacoffeeshop' ), ) ); } endif; // ayacoffeeshop_setup add_action( 'after_setup_theme', 'ayacoffeeshop_setup' ); if ( ! function_exists( 'ayacoffeeshop_load_scripts' ) ) : function ayacoffeeshop_load_scripts() { wp_enqueue_style( 'ayacoffeeshop-fonts', ayacoffeeshop_fonts_url(), array(), null ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( ) ); wp_enqueue_style( 'ayacoffeeshop-style', get_stylesheet_uri(), array() ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Load Utilities JS Script wp_enqueue_script( 'ayacoffeeshop-utilities', get_template_directory_uri() . '/js/utilities.js', array( 'jquery' ) ); } endif; // ayacoffeeshop_load_scripts add_action( 'wp_enqueue_scripts', 'ayacoffeeshop_load_scripts' ); if ( ! function_exists( 'ayacoffeeshop_widgets_init' ) ) : /** * widgets-init action handler. Used to register widgets and register widget areas */ function ayacoffeeshop_widgets_init() { // Register Sidebar Widget. register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'ayacoffeeshop'), 'id' => 'sidebar-widget-area', 'description' => __( 'The sidebar widget area', 'ayacoffeeshop'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #1 register_sidebar( array ( 'name' => __( 'Footer Column #1', 'ayacoffeeshop' ), 'id' => 'footer-column-1-widget-area', 'description' => __( 'The Footer Column #1 widget area', 'ayacoffeeshop' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #2 register_sidebar( array ( 'name' => __( 'Footer Column #2', 'ayacoffeeshop' ), 'id' => 'footer-column-2-widget-area', 'description' => __( 'The Footer Column #2 widget area', 'ayacoffeeshop' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #3 register_sidebar( array ( 'name' => __( 'Footer Column #3', 'ayacoffeeshop' ), 'id' => 'footer-column-3-widget-area', 'description' => __( 'The Footer Column #3 widget area', 'ayacoffeeshop' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); } endif; // ayacoffeeshop_widgets_init add_action( 'widgets_init', 'ayacoffeeshop_widgets_init' ); if ( ! function_exists( 'ayacoffeeshop_fonts_url' ) ) : /** * Load google font url used in the ayacoffeeshop theme */ function ayacoffeeshop_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Yanone, translate this to 'off'. Do not translate * into your own language. */ $questrial = _x( 'on', 'Yanone font: on or off', 'ayacoffeeshop' ); if ( 'off' !== $questrial ) { $font_families = array(); $font_families[] = 'Yanone'; $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; // ayacoffeeshop_fonts_url if ( ! function_exists( 'ayacoffeeshop_show_copyright_text' ) ) : /** * Displays the copyright text. */ function ayacoffeeshop_show_copyright_text() { $footerText = get_theme_mod('ayacoffeeshop_footer_copyright', null); if ( !empty( $footerText ) ) { echo esc_html( $footerText ) . ' | '; } } endif; // ayacoffeeshop_show_copyright_text if ( ! function_exists( 'ayacoffeeshop_custom_header_setup' ) ) : /** * Set up the WordPress core custom header feature. * * @uses ayacoffeeshop_header_style() */ function ayacoffeeshop_custom_header_setup() { add_theme_support( 'custom-header', array ( 'default-image' => '', 'flex-height' => true, 'flex-width' => true, 'uploads' => true, 'width' => 900, 'height' => 100, 'default-text-color' => '#434343', 'wp-head-callback' => 'ayacoffeeshop_header_style', ) ); } endif; // ayacoffeeshop_custom_header_setup add_action( 'after_setup_theme', 'ayacoffeeshop_custom_header_setup' ); if ( ! function_exists( 'ayacoffeeshop_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see ayacoffeeshop_custom_header_setup(). */ function ayacoffeeshop_header_style() { $header_text_color = get_header_textcolor(); if ( ! has_header_image() && ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color || 'blank' === $header_text_color ) ) { return; } $headerImage = get_header_image(); ?> pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } // Outputs the template protected function render_template() { ?>
  • {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

  • setup_actions(); } return $instance; } // Constructor method. private function __construct() {} // Sets up initial actions. private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } // Sets up the customizer sections. public function sections( $manager ) { // Load custom sections. // Register custom section types. $manager->register_section_type( 'ayacoffeeshop_Customize_Section_Pro' ); // Register sections. $manager->add_section( new ayacoffeeshop_Customize_Section_Pro( $manager, 'ayacoffeeshop', array( 'title' => esc_html__( 'AyaCoffeeShopPro', 'ayacoffeeshop' ), 'pro_text' => esc_html__( 'Upgrade to Pro', 'ayacoffeeshop' ), 'pro_url' => esc_url( 'https://ayatemplates.com/product/ayacoffeeshoppro' ) ) ) ); } // Loads theme customizer CSS. public function enqueue_control_scripts() { wp_enqueue_script( 'ayacoffeeshop-customize-controls', trailingslashit( get_template_directory_uri() ) . 'js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'ayacoffeeshop-customize-controls', trailingslashit( get_template_directory_uri() ) . 'css/customize-controls.css' ); } } // Doing this customizer thang! ayacoffeeshop_Customize::get_instance(); if ( ! function_exists( 'ayacoffeeshop_customize_register' ) ) : /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function ayacoffeeshop_customize_register( $wp_customize ) { /** * Add Slider Section */ $wp_customize->add_section( 'ayacoffeeshop_slider_section', array( 'title' => __( 'Header Slider', 'ayacoffeeshop' ), 'capability' => 'edit_theme_options', ) ); // Add slide 1 background image $wp_customize->add_setting( 'ayacoffeeshop_slide1_image', array( 'default' => get_template_directory_uri().'/images/slider/' . '1.jpg', 'sanitize_callback' => 'ayacoffeeshop_sanitize_url' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'ayacoffeeshop_slide1_image', array( 'label' => __( 'Slide 1 Image', 'ayacoffeeshop' ), 'section' => 'ayacoffeeshop_slider_section', 'settings' => 'ayacoffeeshop_slide1_image', ) ) ); // Add slide 2 background image $wp_customize->add_setting( 'ayacoffeeshop_slide2_image', array( 'default' => get_template_directory_uri().'/images/slider/' . '2.jpg', 'sanitize_callback' => 'ayacoffeeshop_sanitize_url' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'ayacoffeeshop_slide2_image', array( 'label' => __( 'Slide 2 Image', 'ayacoffeeshop' ), 'section' => 'ayacoffeeshop_slider_section', 'settings' => 'ayacoffeeshop_slide2_image', ) ) ); // Add slide 3 background image $wp_customize->add_setting( 'ayacoffeeshop_slide3_image', array( 'default' => get_template_directory_uri().'/images/slider/' . '3.jpg', 'sanitize_callback' => 'ayacoffeeshop_sanitize_url' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'ayacoffeeshop_slide3_image', array( 'label' => __( 'Slide 3 Image', 'ayacoffeeshop' ), 'section' => 'ayacoffeeshop_slider_section', 'settings' => 'ayacoffeeshop_slide3_image', ) ) ); /** * Add Footer Section */ $wp_customize->add_section( 'ayacoffeeshop_footer_section', array( 'title' => __( 'Footer', 'ayacoffeeshop' ), 'capability' => 'edit_theme_options', ) ); // Add Footer Copyright Text $wp_customize->add_setting( 'ayacoffeeshop_footer_copyright', array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'ayacoffeeshop_footer_copyright', array( 'label' => __( 'Copyright Text', 'ayacoffeeshop' ), 'section' => 'ayacoffeeshop_footer_section', 'settings' => 'ayacoffeeshop_footer_copyright', 'type' => 'text', ) ) ); /** * Add Animations Section */ $wp_customize->add_section( 'ayacoffeeshop_animations_display', array( 'title' => __( 'Animations', 'ayacoffeeshop' ), 'capability' => 'edit_theme_options', ) ); // Add display Animations option $wp_customize->add_setting( 'ayacoffeeshop_animations_display', array( 'default' => 1, 'sanitize_callback' => 'ayacoffeeshop_sanitize_checkbox', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'ayacoffeeshop_animations_display', array( 'label' => __( 'Enable Animations', 'ayacoffeeshop' ), 'section' => 'ayacoffeeshop_animations_display', 'settings' => 'ayacoffeeshop_animations_display', 'type' => 'checkbox', ) ) ); } endif; // ayacoffeeshop_customize_register add_action( 'customize_register', 'ayacoffeeshop_customize_register' ); if ( ! function_exists( 'ayacoffeeshop_sanitize_checkbox' ) ) : function ayacoffeeshop_sanitize_checkbox( $checked ) { // Boolean check. return ( ( isset( $checked ) && true == $checked ) ? true : false ); } endif; // ayacoffeeshop_sanitize_checkbox if ( ! function_exists( 'ayacoffeeshop_sanitize_url' ) ) : function ayacoffeeshop_sanitize_url( $url ) { return esc_url_raw( $url ); } endif; // ayacoffeeshop_sanitize_url if ( ! function_exists( 'ayacoffeeshop_should_display_slider' ) ) : function ayacoffeeshop_should_display_slider() { return (is_front_page() && get_option( 'show_on_front' ) == 'page') && (ayacoffeeshop_get_slides_count() > 0); } endif; // ayacoffeeshop_should_display_slider if ( ! function_exists( 'ayacoffeeshop_slides_json' ) ) : function ayacoffeeshop_slides_json() { $result = array(); for ( $i = 1; $i <= 3; ++$i ) { $defaultSlideImage = get_template_directory_uri().'/images/slider/' . $i .'.jpg'; $slideImage = get_theme_mod( 'ayacoffeeshop_slide'.$i.'_image', $defaultSlideImage ); if ( $slideImage != '' ) { $slide = array( 'slideImage' => $slideImage, ); array_push($result, $slide); } } return json_encode($result); } endif; // ayacoffeeshop_slides_json if ( ! function_exists( 'ayacoffeeshop_get_slides_count' ) ) : function ayacoffeeshop_get_slides_count() { $result = 0; for ( $i = 1; $i <= 3; ++$i ) { $defaultSlideImage = get_template_directory_uri().'/images/slider/' . $i .'.jpg'; $slideImage = get_theme_mod( 'ayacoffeeshop_slide'.$i.'_image', $defaultSlideImage ); if ( $slideImage != '' ) { ++$result; } } return $result; } endif; // ayacoffeeshop_get_slides_count