<?php
/**
* Functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package real-estate-salient
*/
/**
* Sets the content width in pixels, based on the theme's design and stylesheet.
* Priority 0 to make it available to lower priority callbacks.
*
*/
function real_estate_salient_content_width() {
$GLOBALS['content_width'] = apply_filters( 'real_estate_salient_content_width', 850 );
}
add_action( 'after_setup_theme', 'real_estate_salient_content_width', 0 );
if ( ! function_exists( 'real_estate_salient_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function real_estate_salient_setup() {
/**
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/**
* Add default support for add feed on head
*/
add_theme_support( 'automatic-feed-links' );
/**
* Add default support for thumbnails
*/
add_theme_support('post-thumbnails');
/**
* Add image size
*/
add_image_size('real-estate-salient-index', 450, 300, true);
add_image_size('real-estate-salient-slider', 1350, 500, true);
/**
* Enable navigational menu
* real_estate_salient theme use one navigation menu
* @link https://codex.wordpress.org/Function_Reference/register_nav_menus
*/
register_nav_menus(array('catnav' => __('Category menu', 'real-estate-salient')));
/*
* Enable support for custom logo.
*/
add_theme_support( 'custom-logo', array('height'=> 70,'width'=> 250,'flex-height' => true,'header-text' => array( 'site-title', 'site-description' ),));
}
endif;
add_action( 'after_setup_theme', 'real_estate_salient_setup' );
/**
* Enqueue scripts and styles.
*/
if ( ! function_exists ( 'real_estate_salient_enqueues' ) ) {
function real_estate_salient_enqueues() {
// styles
wp_enqueue_style( 'bootstrap-css', get_template_directory_uri(). '/css/bootstrap.min.css', array());
wp_enqueue_style( 'font-awesome-css', get_template_directory_uri(). '/css/fontawesomeall.min.css', array());
wp_enqueue_style( 'flexslider', get_template_directory_uri(). '/css/flexslider.css', array());
wp_enqueue_style( 'slicknav', get_template_directory_uri(). '/css/slicknav.css', array());
wp_enqueue_style( 'real-estate-salient-property', get_template_directory_uri(). '/css/property.css', array());
wp_enqueue_style( 'real-estate-salient-Bitter', '//fonts.googleapis.com/css?family=Bitter:400,400i,700', array());
wp_enqueue_style( 'real-estate-salient-style', get_stylesheet_uri());
//scripts
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery') );
wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider.js', array('jquery'));
wp_enqueue_script( 'jquery-slicknav', get_template_directory_uri(). '/js/jquery.slicknav.min.js', array('jquery'), '1.0.0', true );
wp_enqueue_script( 'real-estate-salient-custom', get_template_directory_uri() . '/js/custom.js', array('jquery') );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
}
add_action( 'wp_enqueue_scripts', 'real_estate_salient_enqueues', 20);
/**
* Adjust excerpt length
* Default WordPress excerpt length doesn't look good with theme
* Hense adjusting upon our need
*/
function real_estate_salient_excerpt_length( $length ) {
if ( is_admin() ) {
return $length;
}
return 40;
}
add_filter( 'excerpt_length', 'real_estate_salient_excerpt_length', 999 );
/**
* Adjust excerpt
* Remove read more link
*/
function real_estate_salient_excerpt_more( $more ) {
if ( is_admin() ) {
return $more;
}
return '';
}
add_filter('excerpt_more', 'real_estate_salient_excerpt_more');
/**
* Register sidebar
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function real_estate_salient_sidebar() {
register_sidebar (array (
'name' => __( 'Sidebar widgets', 'real-estate-salient' ),
'id' => 'general-sidebar',
'description' => __( 'Place your sidebar widgets here.', 'real-estate-salient' ),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="wi-title clearfix"><h3 class="w-title">',
'after_title' => '</h3></div>',
));
register_sidebar (array (
'name' => __( 'Footer Widget Left', 'real-estate-salient' ),
'id' => 'footleft-sidebar',
'description' => __( 'Place your first footer widgets here.', 'real-estate-salient' ),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="wi-title clearfix"><h3 class="w-title">',
'after_title' => '</h3></div>',
));
register_sidebar (array (
'name' => __( 'Footer Widget Middle', 'real-estate-salient' ),
'id' => 'footmiddle-sidebar',
'description' => __( 'Place your second footer widgets here.', 'real-estate-salient' ),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="wi-title clearfix"><h3 class="w-title">',
'after_title' => '</h3></div>',
));
register_sidebar (array (
'name' => __( 'Footer Widget Right', 'real-estate-salient' ),
'id' => 'footright-sidebar',
'description' => __( 'Place your third footer widgets here.', 'real-estate-salient' ),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<div class="wi-title clearfix"><h3 class="w-title">',
'after_title' => '</h3></div>',
));
}
add_action( 'widgets_init', 'real_estate_salient_sidebar' );
/**
* Comment settings
*/
function real_estate_salient_comment($comment, $args, $depth) {
if (get_comment_type() == 'pingback' || get_comment_type() == 'trackback') : ?>
<?php elseif (get_comment_type() == 'comment') :?>
<li id="comment-<?php comment_ID();?>">
<div <?php comment_class('comment-post'); ?>>
<div class="comment-author">
<?php echo get_avatar($comment, 70);?>
</div>
<div class="comment-content">
<div class="comment-meta">
<?php echo get_comment_author_link();?>
<p><?php comment_date();?></p>
</div>
<div class="comment-text">
<?php comment_text(); ?>
</div>
<span class="bg-color" >
<?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))); ?>
</span>
<hr/>
</div>
</div>
</li>
<?php endif;
}
function real_estate_salient_upgrade_notice(){
echo '<div class="notice notice-success is-dismissible">
<p style="line-height: 40px;"><b>Add Properties, logo, Property slider, custom Widgets, and get 24/7 dedicated support, for just $45 (code: 10PERCENTOFF for 10% Off ) <a target="_blank" style="background: #2271b1;color: white;padding: 6px;border-radius: 3px;text-decoration: none;font-weight: bold;" href="https://www.ammuthemes.com/downloads/real-estate-salient-pro/">Upgrade to Premium</a>.</b></p>
</div>';
}
/**
* Help notice
**/
function real_estate_salient_general_admin_notice(){
$msg = sprintf('<div data-dismissible="disable-done-notice-forever" class="notice notice-info" >
<h3>%1$s</h3>
<p>%2$s</p><p>
<a class="avril-btn-get-started button button-primary button-hero avril-button-padding" href="#" data-name="" data-slug="">%3$s</a>
<a href="%4$s" target="new" class="button">%5$s</a>
<a href="%6$s" class="button">%7$s</a>
<a href="?real_estate_salient_notice_dismissed" style="text-decoration: none; float: right;" >%8$s</a></p></div>',
esc_html__('Get Most out of the theme','real-estate-salient'),
esc_html__('Welcome, Thank you for choosing our theme Real Estate Salient. You can start either by importing the ready made demo or get started by customizing it your self','real-estate-salient'),
esc_html__('Go to Demo Importer Page', 'real-estate-salient'),
esc_url(admin_url()."themes.php?page=real_estate_salient_guide"),
esc_html__('Go to Theme Guide', 'real-estate-salient'),
esc_url(admin_url()."customize.php"),
esc_html__('Go to Settings page', 'real-estate-salient'),
esc_html__('Dismiss Notice', 'real-estate-salient'));
echo wp_kses_post($msg);
}
if ( isset( $_GET['real_estate_salient_notice_dismissed'] ) ){
//set notice value false
update_option('real_estate_help_notice', 'notice_nov24_dismissed');
}
$real_estate_salient_help_notice = get_option('real_estate_help_notice', '');
if (($real_estate_salient_help_notice != 'notice_nov24_dismissed' || $real_estate_salient_help_notice === '') ){
add_action( 'admin_notices', 'real_estate_salient_general_admin_notice', 20 );
}
add_action( 'admin_notices', 'real_estate_salient_upgrade_notice', 10 );
/**************************
* Plugin Installer
**************************/
//Admin Enqueue for Admin
function real_estate_salient_admin_enqueue_scripts(){
wp_enqueue_script( 'avril-admin-script', get_template_directory_uri() . '/js/admin.js', array( 'jquery' ), '', true );
wp_localize_script( 'avril-admin-script', 'avril_ajax_object',
array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
);
}
add_action( 'admin_enqueue_scripts', 'real_estate_salient_admin_enqueue_scripts' );
add_action( 'wp_ajax_install_act_plugin', 'real_estate_salient_admin_install_plugin' );
function real_estate_salient_admin_install_plugin() {
/**
* Install Plugin.
*/
include_once ABSPATH . '/wp-admin/includes/file.php';
include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
if ( ! file_exists( WP_PLUGIN_DIR . '/ammu-demo-import' ) ) {
$api = plugins_api( 'plugin_information', array(
'slug' => sanitize_key( wp_unslash( 'ammu-demo-import' ) ),
'fields' => array(
'sections' => false,
),
) );
$skin = new WP_Ajax_Upgrader_Skin();
$upgrader = new Plugin_Upgrader( $skin );
$result = $upgrader->install( $api->download_link );
}
if ( ! file_exists( WP_PLUGIN_DIR . '/one-click-demo-import' ) ) {
$api = plugins_api( 'plugin_information', array(
'slug' => sanitize_key( wp_unslash( 'one-click-demo-import' ) ),
'fields' => array(
'sections' => false,
),
) );
$skin = new WP_Ajax_Upgrader_Skin();
$upgrader = new Plugin_Upgrader( $skin );
$result = $upgrader->install( $api->download_link );
}
// Activate plugin.
if ( current_user_can( 'activate_plugin' ) ) {
$result = activate_plugin( 'one-click-demo-import/one-click-demo-import.php' );
$result = activate_plugin( 'ammu-demo-import/ammu-demo-import.php' );
}
}
/**
* Customizer additions.
*/
require_once( get_template_directory() . '/inc/template-tags.php' );
require_once( get_template_directory() . '/inc/loader.php' );
require_once( get_template_directory() . '/inc/customizer/customizer.php' );
require_once( get_template_directory() . '/inc/tgmpa-function.php' );
require_once( get_template_directory() . '/inc/upgrade/class-customize.php' );
require_once( get_template_directory() . '/inc/getstart/getstart.php' );