%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/plugins/windoor-plus/modules/post/customizer/index.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if( !class_exists( 'WindoorPlusCustomizerBlogPost' ) ) {
    class WindoorPlusCustomizerBlogPost {

        private static $_instance = null;

        public static function instance() {
            if ( is_null( self::$_instance ) ) {
                self::$_instance = new self();
            }

            return self::$_instance;
        }

        function __construct() {
			add_action( 'customize_register', array( $this, 'register' ), 15 );
        }

        function register( $wp_customize ) {

            $wp_customize->add_section(
                new Windoor_Customize_Section(
                    $wp_customize,
                    'site-blog-post-section',
                    array(
                        'title'    => esc_html__('Single Post', 'windoor-plus'),
                        'panel'    => 'site-blog-main-panel',
                        'priority' => 20,
                    )
                )
            );

			if ( ! defined( 'WINDOOR_PRO_VERSION' ) ) {
				$wp_customize->add_control(
					new Windoor_Customize_Control_Separator(
						$wp_customize, WINDOOR_CUSTOMISER_VAL . '[windoor-plus-site-single-blog-separator]',
						array(
							'type'        => 'wdt-separator',
							'section'     => 'site-blog-post-section',
							'settings'    => array(),
							'caption'     => WINDOOR_PLUS_REQ_CAPTION,
							'description' => WINDOOR_PLUS_REQ_DESC,
						)
					)
				);
			}

        }
    }
}

WindoorPlusCustomizerBlogPost::instance();