![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/www/wp-content/themes/newsup/inc/ansar/customize/ |
<?php /** * Newsup Theme Customizer * * @package Newsup */ if (!function_exists('newsup_get_option')): /** * Get theme option. * * @since 1.0.0 * * @param string $key Option key. * @return mixed Option value. */ function newsup_get_option($key) { if (empty($key)) { return; } $value = ''; $default = newsup_get_default_theme_options(); $default_value = null; if (is_array($default) && isset($default[$key])) { $default_value = $default[$key]; } if (null !== $default_value) { $value = get_theme_mod($key, $default_value); } else { $value = get_theme_mod($key); } return $value; } endif; // Load customize default values. require get_template_directory().'/inc/ansar/customize/customizer-callback.php'; // Load customize default values. require get_template_directory().'/inc/ansar/customize/customizer-default.php'; /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function newsup_customize_register($wp_customize) { // Load customize controls. require get_template_directory().'/inc/ansar/customize/customizer-control.php'; // Load customize sanitize. require get_template_directory().'/inc/ansar/customize/customizer-sanitize.php'; $wp_customize->get_setting('custom_logo')->sanitize_callback = 'esc_url_raw'; $wp_customize->get_setting('custom_logo')->transport = 'postMessage'; $wp_customize->get_setting('blogname')->transport = 'postMessage'; $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; $wp_customize->get_setting('header_textcolor')->transport = 'postMessage'; if (isset($wp_customize->selective_refresh)) { $wp_customize->selective_refresh->add_partial('custom_logo', array( 'selector' => '.site-logo', 'render_callback' => 'custom_logo_selective_refresh' )); $wp_customize->selective_refresh->add_partial('blogname', array( 'selector' => '.site-title a, .site-title-footer a', 'render_callback' => 'newsup_customize_partial_blogname', )); $wp_customize->selective_refresh->add_partial('blogdescription', array( 'selector' => '.site-description, .site-description-footer', 'render_callback' => 'newsup_customize_partial_blogdescription', )); $wp_customize->selective_refresh->add_partial('header_social_icon_enable', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_fb_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_fb_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_twt_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_twt_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_lnkd_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_lnkd_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_insta_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_insta_insta_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_youtube_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_youtube_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_pintrest_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_pintrest_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_tele_link', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('newsup_header_tele_target', array( 'selector' => '.mg-headwidget .mg-head-detail .mg-social', 'render_callback' => 'newsup_customize_partial_header_social_icon_enable', )); $wp_customize->selective_refresh->add_partial('banner_advertisement_section', array( 'selector' => '.mg-headwidget .mg-nav-widget-area .col-md-3 + .col-md-9', 'render_callback' => 'newsup_customize_partial_banner_advertisement_section', )); $wp_customize->selective_refresh->add_partial('banner_advertisement_section_url', array( 'selector' => '.mg-headwidget .mg-nav-widget-area .col-md-3 + .col-md-9', 'render_callback' => 'newsup_customize_partial_banner_advertisement_section', )); $wp_customize->selective_refresh->add_partial('newsup_open_on_new_tab', array( 'selector' => '.mg-headwidget .mg-nav-widget-area .col-md-3 + .col-md-9', 'render_callback' => 'newsup_customize_partial_banner_advertisement_section', )); $wp_customize->selective_refresh->add_partial('select_slider_news_category', array( 'selector' => '.homemain', 'render_callback' => '.newsup_customize_partial_select_slider_news_category', )); $wp_customize->selective_refresh->add_partial('latest_tab_title', array( 'selector' => '.top-right-area .nav-tabs', 'render_callback' => '.newsup_customize_partial_latest_tab_title', )); $wp_customize->selective_refresh->add_partial('show_popular_tags_title', array( 'selector' => '.mg-tpt-txnlst strong', 'render_callback' => 'newsup_customize_partial_show_popular_tags_title', )); $wp_customize->selective_refresh->add_partial('header_data_enable', array( 'selector' => '.mg-head-detail .info-left', 'render_callback' => 'newsup_customize_partial_newsup_date_time', )); $wp_customize->selective_refresh->add_partial('header_time_enable', array( 'selector' => '.mg-head-detail .info-left', 'render_callback' => 'newsup_customize_partial_newsup_date_time', )); $wp_customize->selective_refresh->add_partial('newsup_date_time_show_type', array( 'selector' => '.mg-head-detail .info-left', 'render_callback' => 'newsup_customize_partial_newsup_date_time', )); $wp_customize->selective_refresh->add_partial('show_flash_news_section', array( 'selector' => '.mg-latest-news-sec', 'render_callback' => 'newsup_customize_partial_flash_news_section', )); $wp_customize->selective_refresh->add_partial('select_flash_news_category', array( 'selector' => '.mg-latest-news-sec', 'render_callback' => 'newsup_customize_partial_flash_news_section', )); $wp_customize->selective_refresh->add_partial('flash_news_title', array( 'selector' => '.mg-latest-news .bn_title .title', 'render_callback' => 'newsup_customize_partial_flash_news_title', )); $wp_customize->selective_refresh->add_partial('you_missed_title', array( 'selector' => '.missed-inner .mg-sec-title h4', 'render_callback' => 'newsup_customize_partial_you_missed_title', )); $wp_customize->selective_refresh->add_partial('footer_social_icon_enable', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_fb_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_fb_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_twt_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_twt_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_lnkd_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_lnkd_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_insta_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_insta_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_youtube_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_youtube_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_pinterest_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_pinterest_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_tele_link', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_footer_tele_target', array( 'selector' => 'footer .mg-footer-bottom-area .mg-social', 'render_callback' => 'newsup_customize_partial_footer_social_icon', )); $wp_customize->selective_refresh->add_partial('newsup_related_post_title', array( 'selector' => '.mg-featured-slider .mg-sec-title h4', 'render_callback' => 'newsup_customize_partial_newsup_related_post_title', )); $wp_customize->selective_refresh->add_partial('header_search_enable', array( 'selector' => '.mg-search-box', 'render_callback' => 'newsup_customize_partial_header_search_enable', )); $wp_customize->selective_refresh->add_partial('header_subsc_enable', array( 'selector' => '.btn-bell', 'render_callback' => 'newsup_customize_partial_newsup_subsc', )); $wp_customize->selective_refresh->add_partial('newsup_subsc_link', array( 'selector' => '.btn-bell', 'render_callback' => 'newsup_customize_partial_newsup_subsc', )); $wp_customize->selective_refresh->add_partial('newsup_subsc_link_target', array( 'selector' => '.btn-bell', 'render_callback' => 'newsup_customize_partial_newsup_subsc', )); $wp_customize->selective_refresh->add_partial('newsup_enable_footer_menu', array( 'selector' => '.mg-footer-copyright', 'render_callback' => 'newsup_customize_partial_newsup_enable_footer_menu', )); $wp_customize->selective_refresh->add_partial('post_image_type', array( 'selector' => '.mg-posts-sec.mg-posts-modul-6 .mg-posts-sec-inner', 'render_callback' => 'newsup_customize_partial_post_image_type', )); $wp_customize->selective_refresh->add_partial('post_image_type', array( 'selector' => '#grid.row.grid-content', 'render_callback' => 'newsup_customize_partial_grid_post_image_type', )); $wp_customize->selective_refresh->add_partial('newsup_content_layout', array( 'selector' => '#content.home > .row, .archive-class > .row', 'render_callback' => 'newsup_customize_partial_content_layout', )); $wp_customize->selective_refresh->add_partial('newsup_page_layout', array( 'selector' => '.page-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_page_layout', )); $wp_customize->selective_refresh->add_partial('newsup_single_page_layout', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_single_post_category', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_single_post_admin_details', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_single_post_date', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_single_post_tag', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('single_show_featured_image', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('single_show_share_icon', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_single_post_admin_details', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_related_post', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_single_post_category', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_single_post_date', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_single_post_admin', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('newsup_enable_single_post_comments', array( 'selector' => '.single-class > .container-fluid > .row', 'render_callback' => 'newsup_customize_partial_single_layout', )); $wp_customize->selective_refresh->add_partial('you_missed_enable', array( 'selector' => '.missed-section.mg-posts-sec-inner', 'render_callback' => 'newsup_customize_partial_you_missed', )); } $default = newsup_get_default_theme_options(); $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh'; /*theme option panel info*/ require get_template_directory().'/inc/ansar/customize/theme-options.php'; } add_action('customize_register', 'newsup_customize_register'); /** * Render the site title for the selective refresh partial. * * @return void */ function newsup_customize_partial_blogname() { bloginfo('name'); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function newsup_customize_partial_blogdescription() { bloginfo('description'); } function newsup_customize_partial_select_slider_news_category() { return get_theme_mod( 'select_slider_news_category' ); } function newsup_customize_partial_latest_tab_title() { return get_theme_mod( 'latest_tab_title' ); } function newsup_customize_partial_banner_advertisement_section() { return do_action( 'newsup_action_banner_advertisement' ); } function newsup_customize_partial_header_social_icon_enable() { if( get_theme_mod( 'header_social_icon_enable' ) == false ) return; return do_action('newsup_action_header_social_icon'); } function newsup_customize_partial_newsup_date_time() { if( get_theme_mod( 'header_data_enable' ) === false && get_theme_mod('header_time_enable') === false ) return; return newsup_date_display_type(); } function newsup_customize_partial_show_popular_tags_title() { return get_theme_mod( 'show_popular_tags_title' ); } function newsup_customize_partial_flash_news_title() { return get_theme_mod( 'flash_news_title' ); } function newsup_customize_partial_flash_news_section(){ return do_action('newsup_action_banner_exclusive_posts'); } function newsup_customize_partial_you_missed_title() { return get_theme_mod( 'you_missed_title' ); } function newsup_customize_partial_footer_social_icon() { return do_action('newsup_action_footer_social_icon'); } function newsup_customize_partial_newsup_related_post_title() { return get_theme_mod( 'newsup_related_post_title' ); } function newsup_customize_partial_header_search_enable(){ return do_action('newsup_action_header_search'); } function newsup_customize_partial_newsup_subsc(){ return do_action('newsup_action_header_subscribe'); } function newsup_customize_partial_newsup_enable_footer_menu(){ return do_action('newsup_action_footer_copyright'); } function newsup_customize_partial_post_image_type(){ return do_action('newsup_action_main_list_content'); } function newsup_customize_partial_grid_post_image_type(){ return do_action('newsup_action_main_grid_content'); } function custom_logo_selective_refresh() { if( get_theme_mod( 'custom_logo' ) === "" ) return; echo '<div class="site-logo">'.the_custom_logo().'</div>'; } function newsup_customize_partial_content_layout(){ return do_action('newsup_action_main_content_layouts'); } function newsup_customize_partial_you_missed(){ return do_action('newsup_action_footer_missed'); } function newsup_customize_partial_page_layout() { return get_template_part('template-parts/content', 'page'); } function newsup_customize_partial_single_layout() { return get_template_part('template-parts/content', 'single'); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function newsup_customize_preview_js() { wp_enqueue_script('newsup-customizer', get_template_directory_uri().'/js/customizer.js', array('customize-preview'), '20151215', true); } add_action('customize_preview_init', 'newsup_customize_preview_js'); function newsup_customizer_css() { wp_enqueue_script( 'newsup-customize-controls', get_template_directory_uri() . '/assets/customizer-admin.js', array( 'customize-controls' ) ); } add_action( 'customize_controls_enqueue_scripts', 'newsup_customizer_css',0 ); /************************* Related Post Callback function *********************************/ function newsup_rt_post_callback ( $control ) { if( true == $control->manager->get_setting ('newsup_enable_related_post')->value()){ return true; } else { return false; } } /************************* Theme Customizer with Sanitize function *********************************/ function newsup_theme_option( $wp_customize ) { function newsup_sanitize_text( $input ) { return wp_kses_post( force_balance_tags( $input ) ); } /*--- Site title Font size **/ $wp_customize->add_setting('newsup_title_font_size', array( 'default' => 34, 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control('newsup_title_font_size', array( 'label' => esc_html__('Site Title Size', 'newsup'), 'section' => 'title_tagline', 'type' => 'number', 'priority' => 50, ) ); $wp_customize->add_setting('newsup_center_logo_title', array( 'default' => false, 'transport' => 'postMessage', 'sanitize_callback' => 'newsup_sanitize_checkbox', ) ); $wp_customize->add_control('newsup_center_logo_title', array( 'label' => esc_html__('Display Center Site Title and Tagline', 'newsup'), 'section' => 'title_tagline', 'type' => 'checkbox', 'priority' => 55, ) ); /*--- Get Site info control ---*/ $wp_customize->get_control( 'header_textcolor')->section = 'title_tagline'; } add_action('customize_register','newsup_theme_option');