File manager - Edit - C:/inetpub/vhosts/alsawaripharma.com/icte-dubai.com/wp-content/themes/blossom-coach/inc/customizer/frontpage.php
Back
<?php /** * Blossom Coach Front Page Settings * * @package Blossom_Coach */ function blossom_coach_customize_register_frontpage( $wp_customize ) { /** Front Page Settings */ $wp_customize->add_panel( 'frontpage_settings', array( 'priority' => 60, 'capability' => 'edit_theme_options', 'title' => __( 'Front Page Settings', 'blossom-coach' ), 'description' => __( 'Static Home Page settings.', 'blossom-coach' ), ) ); $wp_customize->get_section( 'header_image' )->panel = 'frontpage_settings'; $wp_customize->get_section( 'header_image' )->title = __( 'Banner Section', 'blossom-coach' ); $wp_customize->get_section( 'header_image' )->priority = 10; $wp_customize->get_control( 'header_image' )->active_callback = 'blossom_coach_banner_ac'; $wp_customize->get_control( 'header_video' )->active_callback = 'blossom_coach_banner_ac'; $wp_customize->get_control( 'external_header_video' )->active_callback = 'blossom_coach_banner_ac'; $wp_customize->get_section( 'header_image' )->description = ''; $wp_customize->get_setting( 'header_image' )->transport = 'refresh'; $wp_customize->get_setting( 'header_video' )->transport = 'refresh'; $wp_customize->get_setting( 'external_header_video' )->transport = 'refresh'; /** Banner Options */ $wp_customize->add_setting( 'ed_banner_section', array( 'default' => 'slider_banner', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'ed_banner_section', array( 'label' => __( 'Banner Options', 'blossom-coach' ), 'description' => __( 'Choose banner as static image/video or as a slider.', 'blossom-coach' ), 'section' => 'header_image', 'choices' => array( 'no_banner' => __( 'Disable Banner Section', 'blossom-coach' ), 'static_nl_banner' => __( 'Static/Video Newsletter Banner', 'blossom-coach' ), 'slider_banner' => __( 'Banner as Slider', 'blossom-coach' ), ), 'priority' => 5 ) ) ); if( blossom_coach_is_btnw_activated() ){ /** Banner Newsletter */ $wp_customize->add_setting( 'banner_newsletter', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( 'banner_newsletter', array( 'label' => __( 'Banner Newsletter', 'blossom-coach' ), 'description' => __( 'Enter the BlossomThemes Email Newsletters Shortcode. Ex. [BTEN id="356"]', 'blossom-coach' ), 'section' => 'header_image', 'type' => 'text', 'active_callback' => 'blossom_coach_banner_ac' ) ); }else{ $wp_customize->add_setting( 'banner_nl_note', array( 'sanitize_callback' => 'wp_kses_post' ) ); $wp_customize->add_control( new Blossom_Coach_Note_Control( $wp_customize, 'banner_nl_note', array( 'section' => 'header_image', 'label' => __( 'Banner Newsletter', 'blossom-coach' ), 'description' => sprintf( __( 'Please install and activate the recommended plugin %1$sBlossomThemes Email Newsletter%2$s.', 'blossom-coach' ), '<a href="' . admin_url( 'themes.php?page=tgmpa-install-plugins' ) . '" target="_blank">', '</a>' ), ) ) ); } /** Slider Content Style */ $wp_customize->add_setting( 'slider_type', array( 'default' => 'latest_posts', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'slider_type', array( 'label' => __( 'Slider Content Style', 'blossom-coach' ), 'section' => 'header_image', 'choices' => array( 'latest_posts' => __( 'Latest Posts', 'blossom-coach' ), 'cat' => __( 'Category', 'blossom-coach' ) ), 'active_callback' => 'blossom_coach_banner_ac' ) ) ); /** Slider Category */ $wp_customize->add_setting( 'slider_cat', array( 'default' => '', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'slider_cat', array( 'label' => __( 'Slider Category', 'blossom-coach' ), 'section' => 'header_image', 'choices' => blossom_coach_get_categories(), 'active_callback' => 'blossom_coach_banner_ac' ) ) ); /** No. of slides */ $wp_customize->add_setting( 'no_of_slides', array( 'default' => 3, 'sanitize_callback' => 'blossom_coach_sanitize_number_absint' ) ); $wp_customize->add_control( new Blossom_Coach_Slider_Control( $wp_customize, 'no_of_slides', array( 'section' => 'header_image', 'label' => __( 'Number of Slides', 'blossom-coach' ), 'description' => __( 'Choose the number of slides you want to display', 'blossom-coach' ), 'choices' => array( 'min' => 1, 'max' => 20, 'step' => 1, ), 'active_callback' => 'blossom_coach_banner_ac' ) ) ); /** Slider Animation */ $wp_customize->add_setting( 'slider_animation', array( 'default' => '', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'slider_animation', array( 'label' => __( 'Slider Animation', 'blossom-coach' ), 'section' => 'header_image', 'choices' => array( 'fadeOut' => __( 'Fade Out', 'blossom-coach' ), 'fadeOutLeft' => __( 'Fade Out Left', 'blossom-coach' ), 'fadeOutRight' => __( 'Fade Out Right', 'blossom-coach' ), 'fadeOutUp' => __( 'Fade Out Up', 'blossom-coach' ), 'fadeOutDown' => __( 'Fade Out Down', 'blossom-coach' ), '' => __( 'Slide', 'blossom-coach' ), 'slideOutLeft' => __( 'Slide Out Left', 'blossom-coach' ), 'slideOutRight' => __( 'Slide Out Right', 'blossom-coach' ), 'slideOutUp' => __( 'Slide Out Up', 'blossom-coach' ), 'slideOutDown' => __( 'Slide Out Down', 'blossom-coach' ), ), 'active_callback' => 'blossom_coach_banner_ac' ) ) ); /** Slider Settings Ends */ /** Blog Section */ $wp_customize->add_section( 'blog_section', array( 'title' => __( 'Blog Section', 'blossom-coach' ), 'priority' => 40, 'panel' => 'frontpage_settings', ) ); /** Enable Blog Section */ $wp_customize->add_setting( 'ed_blog_section', array( 'default' => true, 'sanitize_callback' => 'blossom_coach_sanitize_checkbox' ) ); $wp_customize->add_control( new Blossom_Coach_Toggle_Control( $wp_customize, 'ed_blog_section', array( 'label' => __( 'Enable Blog Section', 'blossom-coach' ), 'description' => __( 'Enable to show blog section.', 'blossom-coach' ), 'section' => 'blog_section', ) ) ); /** Blog title */ $wp_customize->add_setting( 'blog_section_title', array( 'default' => __( 'Latest Articles', 'blossom-coach' ), 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'blog_section_title', array( 'section' => 'blog_section', 'label' => __( 'Blog Title', 'blossom-coach' ), 'type' => 'text', ) ); /** Selective refresh for blog title. */ $wp_customize->selective_refresh->add_partial( 'blog_section_title', array( 'selector' => '.blog-section .section-title', 'render_callback' => 'blossom_coach_get_blog_title' ) ); /** Read More Label */ $wp_customize->add_setting( 'blog_readmore', array( 'default' => __( 'Read More', 'blossom-coach' ), 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'blog_readmore', array( 'label' => __( 'Read More Label', 'blossom-coach' ), 'section' => 'blog_section', 'type' => 'text', ) ); $wp_customize->selective_refresh->add_partial( 'blog_readmore', array( 'selector' => '.blog-section .article-wrap .post .btn-link', 'render_callback' => 'blossom_coach_get_blog_section_read_more', ) ); /** View All Label */ $wp_customize->add_setting( 'blog_view_all', array( 'default' => __( 'See More Posts', 'blossom-coach' ), 'sanitize_callback' => 'sanitize_text_field', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'blog_view_all', array( 'label' => __( 'View All Label', 'blossom-coach' ), 'section' => 'blog_section', 'type' => 'text', 'active_callback' => 'blossom_coach_get_blog_section_view_all_btn' ) ); $wp_customize->selective_refresh->add_partial( 'blog_view_all', array( 'selector' => '.blog-section .wrapper .btn-readmore', 'render_callback' => 'blossom_coach_get_blog_view_all_btn', ) ); /** Blog Section Ends */ } add_action( 'customize_register', 'blossom_coach_customize_register_frontpage' );
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 0.11 |
proxy
|
phpinfo
|
Settings