OwlCyberSecurity - MANAGER
Edit File: index.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'NeytriPlusCustomizerSiteToTop' ) ) { class NeytriPlusCustomizerSiteToTop { private static $_instance = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } function __construct() { add_filter( 'neytri_plus_customizer_default', array( $this, 'default' ) ); add_action( 'neytri_general_cutomizer_options', array( $this, 'register_general' ), 40 ); } function default( $option ) { $option['show_site_to_top'] = '0'; return $option; } function register_general( $wp_customize ) { $wp_customize->add_section( new Neytri_Customize_Section( $wp_customize, 'site-to-top-section', array( 'title' => esc_html__('To Top', 'neytri-plus'), 'panel' => 'site-general-main-panel', 'priority' => 40, ) ) ); /** * Option : Enable Site To Top */ $wp_customize->add_setting( NEYTRI_CUSTOMISER_VAL . '[show_site_to_top]', array( 'type' => 'option', ) ); $wp_customize->add_control( new Neytri_Customize_Control_Switch( $wp_customize, NEYTRI_CUSTOMISER_VAL . '[show_site_to_top]', array( 'type' => 'wdt-switch', 'section' => 'site-to-top-section', 'label' => esc_html__( 'Enable To Top', 'neytri-plus' ), 'choices' => array( 'on' => esc_attr__( 'Yes', 'neytri-plus' ), 'off' => esc_attr__( 'No', 'neytri-plus' ) ) ) ) ); } } } NeytriPlusCustomizerSiteToTop::instance();