| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/cwd/home/inc/ |
Upload File : |
<?php
/**
* aperture-real-estate Theme Customizer
*
* @package aperture-real-estate
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function aperture_real_estate_customize_register( $wp_customize ) {
$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( 'blogname', array(
'selector' => '.site-title a',
'render_callback' => 'aperture_real_estate_customize_partial_blogname',
) );
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
'selector' => '.site-description',
'render_callback' => 'aperture_real_estate_customize_partial_blogdescription',
) );
}
$wp_customize->add_setting( 'link_color' , array(
'default' => '#e74c3c',
'sanitize_callback' => 'sanitize_hex_color',
) );
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'link_color',
array(
'label' => esc_html__( 'Link Color', 'aperture-real-estate' ),
'section' => 'colors',
'settings' => 'link_color',
) ) );
//Header Section (text & link)
$wp_customize->add_setting( 'header_main_text',
array(
'default' => '', // Optional.
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'header_main_text',
array(
'label' => esc_html__( 'Header Main Text', 'aperture-real-estate' ),
'section' => 'header_image',
'type' => 'textarea',
) ) );
//header sub text
$wp_customize->add_setting( 'header_sub_text',
array(
'default' => '', // Optional.
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'header_sub_text',
array(
'label' => esc_html__( 'Header Sub Text', 'aperture-real-estate' ),
'section' => 'header_image',
'type' => 'text',
) ) );
//header button label
$wp_customize->add_setting( 'header_button_label',
array(
'default' => esc_html__('View More','aperture-real-estate'),
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'header_button_label',
array(
'label' => esc_html__( 'Button Label', 'aperture-real-estate' ),
'section' => 'header_image',
'type' => 'text',
) ) );
//header button url
$wp_customize->add_setting( 'header_button_url',
array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'header_button_url',
array(
'label' => esc_html__( 'Button URL(required for button to show)', 'aperture-real-estate' ),
'section' => 'header_image',
'type' => 'url',
) ) );
//Add Home Intro Section
/**
* Add home intro section
*/
$wp_customize->add_section( 'intro_section',
array(
'title' => esc_html__( 'Home Intro Section', 'aperture-real-estate' ),
'description' => esc_html__( 'Add an intro section to the homepage', 'aperture-real-estate' ),
'priority' => 50,
)
);
$wp_customize->add_setting( 'intro_toggle',
array(
'default' => 'disable',
'sanitize_callback' => 'aperture_real_estate_sanitize_radio',
)
);
$wp_customize->add_control( 'intro_toggle',
array(
'label' => esc_html__( 'Enable/Disable Section', 'aperture-real-estate' ),
'section' => 'intro_section',
'priority' => 1, // Optional. Order priority to load the control. Default: 10
'type' => 'radio',
'capability' => 'edit_theme_options', // Optional. Default: 'edit_theme_options'
'choices' => array( // Optional.
'enable' => esc_html__( 'Enable','aperture-real-estate' ),
'disable' => esc_html__( 'Disable' ,'aperture-real-estate')
)
)
);
//About Section title
$wp_customize->add_setting( 'intro_title',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'intro_title',
array(
'label' => esc_html__( 'Section Title', 'aperture-real-estate' ),
'section' => 'intro_section',
'type' => 'text',
) ) );
//About Section Sub Title
$wp_customize->add_setting( 'intro_sub_title',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'intro_sub_title',
array(
'label' => esc_html__( 'Section Title', 'aperture-real-estate' ),
'section' => 'intro_section',
'type' => 'textarea',
) ) );
//About Section Sub Title
$wp_customize->add_setting( 'intro_content',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$wp_customize->add_control(new WP_Customize_Color_Control( $wp_customize,'intro_content',
array(
'label' => esc_html__( 'Section Content', 'aperture-real-estate' ),
'section' => 'intro_section',
'type' => 'textarea',
) ) );
//radio box sanitization function
function aperture_real_estate_sanitize_radio( $input, $setting ){
//input must be a slug: lowercase alphanumeric characters, dashes and underscores are allowed only
$input = sanitize_key($input);
//get the list of possible radio box options
$choices = $setting->manager->get_control( $setting->id )->choices;
//return input if valid or return default option
return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
}
// View PRO Version
$wp_customize->add_section( 'aperture_real_estatestyle_view_pro', array(
'title' => esc_html__( 'Upgrage to Pro', 'aperture-real-estate' ),
'priority' => 1,
'description' => sprintf(
//unintrosive upsell message
__( '<div class="upsell-container">
<h2>Upgrade to PRO Today!</h2>
<p>Get the pro add-on plugin today:</p>
<ul class="upsell-features">
<li>
<h4>List Real Estate Properties</h4>
<div class="description">Create & manage real estate properties.</div>
</li>
<li>
<h4>Search/Filter Properties</h4>
<div class="description">Search & Filter properties easily</div>
</li>
<li>
<h4>Real Estate Features</h4>
<div class="description">Create galleries, add maps, videos & all the details you need to sell/rent that property quick and easy</div>
</li>
<li>
<h4>One On One Email Support</h4>
<div class="description">Get one on one email support personally from me, I can also install & setup the theme for you</div>
</li>
</ul> %s </div>', 'aperture-real-estate' ),
sprintf( '<a href="%1$s" target="_blank" class="button button-primary">%2$s</a>', esc_url( aperture_real_estate_get_pro_link() ), esc_html__( 'Upgrade To PRO', 'aperture-real-estate' ) )
),
) );
$wp_customize->add_setting( 'aperture_real_estatepro_desc', array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( 'aperture_real_estatepro_desc', array(
'section' => 'aperture_real_estatestyle_view_pro',
'type' => 'hidden',
) );
}
add_action( 'customize_register', 'aperture_real_estate_customize_register' );
/**
* Render the site title for the selective refresh partial.
*
* @return void
*/
function aperture_real_estate_customize_partial_blogname() {
bloginfo( 'name' );
}
/**
* Render the site tagline for the selective refresh partial.
*
* @return void
*/
function aperture_real_estate_customize_partial_blogdescription() {
bloginfo( 'description' );
}
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function aperture_real_estate_customize_preview_js() {
wp_enqueue_script( 'aperture-real-estate--customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true );
}
add_action( 'customize_preview_init', 'aperture_real_estate_customize_preview_js' );
/**
* Admin CSS
*/
function aperture_real_estate_customizer_assets() {
wp_enqueue_style( 'aperture_real_estate_customizer_style', get_template_directory_uri() . '/css/upsell.css', null, '1.0.0', false );
}
add_action( 'customize_controls_enqueue_scripts', 'aperture_real_estate_customizer_assets' );
/**
* Generate a link to the Noah Lite info page.
*/
function aperture_real_estate_get_pro_link() {
return 'http://aperturewp.com/downloads/real-estate/';
}