require 'novin-update/wpnovin-atuo-update.php';
$myUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
'http://dl3.wpnovin.com/Source/Themes/intime/5s4df45g6645sd.json',
__FILE__, //Full path to the main plugin file or functions.php.
'intime'
);
/**
* Functions and definitions
*
* @package Intime
*/
if(!defined('DEV_MODE')){
define('DEV_MODE', true);
}
if ( ! function_exists( 'intime_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 intime_setup() {
// Make theme available for translation.
load_theme_textdomain( 'intime', get_template_directory() . '/languages' );
// Custom Header
add_theme_support( 'custom-header' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
// Let WordPress manage the document title.
add_theme_support( 'title-tag' );
// Enable support for Post Thumbnails on posts and pages.
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', 'intime' ),
'secondary' => esc_html__( 'Secondary', 'intime' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'intime_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
// Add support for core custom logo.
add_theme_support( 'custom-logo', array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
) );
add_theme_support( 'post-formats', array (
'',
) );
// Enable support for Post Thumbnails on posts and pages.
add_theme_support('post-thumbnails');
add_image_size( 'intime-thumbnail', 79, 75, true );
add_image_size( 'intime-large', 980, 432, true );
add_image_size( 'intime-medium', 600, 450, true );
add_image_size( 'intime-service', 370, 310, true );
add_image_size( 'intime-history', 113, 128, true );
add_theme_support( 'woocommerce' );
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
endif;
add_action( 'after_setup_theme', 'intime_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
*/
function intime_content_width() {
$GLOBALS['content_width'] = apply_filters( 'intime_content_width', 640 );
}
add_action( 'after_setup_theme', 'intime_content_width', 0 );
/**
* Register widget area.
*/
function intime_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Blog Sidebar', 'intime' ),
'id' => 'sidebar-blog',
'description' => esc_html__( 'Add widgets here.', 'intime' ),
'before_widget' => '',
'before_title' => '
',
) );
if (class_exists('ReduxFramework')) {
register_sidebar( array(
'name' => esc_html__( 'Page Sidebar', 'intime' ),
'id' => 'sidebar-page',
'description' => esc_html__( 'Add widgets here.', 'intime' ),
'before_widget' => '',
'before_title' => '',
) );
}
if ( class_exists( 'Woocommerce' ) ) {
register_sidebar( array(
'name' => esc_html__( 'Shop Sidebar', 'intime' ),
'id' => 'sidebar-shop',
'description' => esc_html__( 'Add widgets here.', 'intime' ),
'before_widget' => '',
'before_title' => '',
) );
}
$hidden_sidebar_icon = intime_get_opt( 'hidden_sidebar_icon', false );
if($hidden_sidebar_icon) {
register_sidebar( array(
'name' => esc_html__( 'Header Hidden Sidebar', 'intime' ),
'id' => 'sidebar-hidden',
'description' => esc_html__( 'Add widgets here.', 'intime' ),
'before_widget' => '',
'before_title' => '',
) );
}
}
add_action( 'widgets_init', 'intime_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function intime_scripts() {
$theme = wp_get_theme( get_template() );
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css', array(), '4.0.0' );
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome.min.css', array(), '4.7.0' );
wp_enqueue_style( 'font-awesome5', get_template_directory_uri() . '/assets/css/font-awesome5.min.css', array(), '5.8.0' );
wp_enqueue_style( 'font-flaticon', get_template_directory_uri() . '/assets/css/flaticon.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'font-flaticon-v2', get_template_directory_uri() . '/assets/css/flaticon-v2.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'font-material-icon', get_template_directory_uri() . '/assets/css/font-material-design.min.css', array(), '2.2.0' );
wp_enqueue_style( 'magnific-popup', get_template_directory_uri() . '/assets/css/magnific-popup.css', array(), '1.0.0' );
wp_enqueue_style( 'animate', get_template_directory_uri() . '/assets/css/animate.css', array(), '1.0.0' );
wp_enqueue_style( 'intime-theme', get_template_directory_uri() . '/assets/css/theme.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'intime-style', get_stylesheet_uri() );
wp_enqueue_style( 'intime-google-fonts', intime_fonts_url() );
/* Lib JS */
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/bootstrap.min.js', array( 'jquery' ), '4.0.0', true );
wp_enqueue_script( 'nice-select', get_template_directory_uri() . '/assets/js/nice-select.min.js', array( 'jquery' ), 'all', true );
wp_enqueue_script( 'match-height', get_template_directory_uri() . '/assets/js/match-height-min.js', array( 'jquery' ), '1.0.0', true );
wp_enqueue_script( 'magnific-popup', get_template_directory_uri() . '/assets/js/magnific-popup.min.js', array( 'jquery' ), '1.0.0', true );
wp_enqueue_script( 'progressbar', get_template_directory_uri() . '/assets/js/progressbar.min.js', array( 'jquery' ), '1.0.0', true );
wp_enqueue_script( 'wow', get_template_directory_uri() . '/assets/js/wow.min.js', array( 'jquery' ), '1.0.0', true );
wp_register_script( 'ct-cookie', get_template_directory_uri() . '/assets/js/jquery.cookie.js', array( 'jquery' ), '1.4.7', true );
/* Theme JS */
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'intime-main', get_template_directory_uri() . '/assets/js/main.js', array( 'jquery' ), $theme->get( 'Version' ), true );
wp_enqueue_script( 'intime-woocommerce', get_template_directory_uri() . '/woocommerce/woocommerce.js', array( 'jquery' ), $theme->get( 'Version' ), true );
/*
* Elementor Widget JS
*/
// Inline CSS
wp_enqueue_script( 'ct-inline-css-js', get_template_directory_uri() . '/elementor/js/ct-inline-css.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Typing Out
wp_register_script( 'ct-typing-out-js', get_template_directory_uri() . '/elementor/js/ct-typingout.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Counter Widget
wp_register_script( 'ct-counter-widget-js', get_template_directory_uri() . '/elementor/js/ct-counter-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Progress Bar Widget
wp_register_script( 'ct-progressbar-widget-js', get_template_directory_uri() . '/elementor/js/ct-progressbar-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Pie Charts Widget
wp_register_script( 'ct-piecharts-widget-js', get_template_directory_uri() . '/elementor/js/ct-piecharts-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Line Charts Widget
wp_register_script( 'chart-js', get_template_directory_uri() . '/elementor/js/chart.min.js', array( 'jquery' ), '2.9.4', true );
wp_register_script( 'ct-linecharts-widget-js', get_template_directory_uri() . '/elementor/js/ct-linecharts-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// CMS Post Carousel Widget
wp_register_script( 'ct-post-carousel-widget-js', get_template_directory_uri() . '/elementor/js/ct-post-carousel-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
wp_register_script('ct-post-masonry-widget-js', get_template_directory_uri() . '/elementor/js/ct-post-masonry-widget.js', [ 'isotope', 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('ct-post-grid-widget-js', get_template_directory_uri() . '/elementor/js/ct-post-grid-widget.js', [ 'isotope', 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('ct-toggle-widget-js', get_template_directory_uri() . '/elementor/js/ct-toggle-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('ct-accordion-widget-js', get_template_directory_uri() . '/elementor/js/ct-accordion-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('ct-alert-widget-js', get_template_directory_uri() . '/elementor/js/ct-alert-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('ct-tabs-widget-js', get_template_directory_uri() . '/elementor/js/ct-tabs-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_localize_script( 'ct-post-masonry-widget-js', 'main_data', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
}
add_action( 'wp_enqueue_scripts', 'intime_scripts' );
/* add admin styles */
function intime_admin_style() {
$theme = wp_get_theme( get_template() );
wp_enqueue_style( 'intime-admin-style', get_template_directory_uri() . '/assets/css/admin.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'font-material-icon', get_template_directory_uri() . '/assets/css/font-material-design.min.css', array(), '2.2.0' );
wp_enqueue_style( 'font-awesome5', get_template_directory_uri() . '/assets/css/font-awesome5.min.css', array(), '5.8.0' );
wp_enqueue_style( 'font-flaticon', get_template_directory_uri() . '/assets/css/flaticon.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'font-flaticon-v2', get_template_directory_uri() . '/assets/css/flaticon-v2.css', array(), $theme->get( 'Version' ) );
wp_enqueue_script( 'intime-main-admin', get_template_directory_uri() . '/assets/js/main-admin.js', array( 'jquery' ), $theme->get( 'Version' ), true );
}
add_action( 'admin_enqueue_scripts', 'intime_admin_style' );
/**
* Helper functions for this theme.
*/
require_once get_template_directory() . '/inc/template-functions.php';
/**
* Theme options
*/
require_once get_template_directory() . '/inc/theme-options.php';
/**
* Page options
*/
require_once get_template_directory() . '/inc/page-options.php';
/**
* CSS Generator.
*/
if ( ! class_exists( 'CSS_Generator' ) ) {
require_once get_template_directory() . '/inc/classes/class-css-generator.php';
}
/**
* Breadcrumb.
*/
require_once get_template_directory() . '/inc/classes/class-breadcrumb.php';
/**
* Custom template tags for this theme.
*/
require_once get_template_directory() . '/inc/template-tags.php';
/* Load list require plugins */
require_once( get_template_directory() . '/inc/require-plugins.php' );
/**
* Additional widgets for the theme
*/
require_once get_template_directory() . '/widgets/widget-recent-posts.php';
require_once get_template_directory() . '/widgets/class.widget-extends.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require_once get_template_directory() . '/inc/extends.php';
if ( ! function_exists( 'intime_fonts_url' ) ) :
/**
* Register Google fonts.
*
* Create your own intime_fonts_url() function to override in a child theme.
*
* @since league 1.1
*
* @return string Google fonts URL for the theme.
*/
function intime_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
if ( 'off' !== _x( 'on', 'Nunito font: on or off', 'intime' ) ) {
$fonts[] = 'Nunito:400,700';
}
if ( 'off' !== _x( 'on', 'Lato font: on or off', 'intime' ) ) {
$fonts[] = 'Lato:400,700';
}
if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'intime' ) ) {
$fonts[] = 'Poppins:400,500,700';
}
if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'intime' ) ) {
$fonts[] = 'Roboto:300,400,400i,500,500i,600,600i,700,700i';
}
if ( 'off' !== _x( 'on', 'Libre Caslon Text font: on or off', 'intime' ) ) {
$fonts[] = 'Libre Caslon Text:400,400i,700,700i';
}
if ( 'off' !== _x( 'on', 'Playfair Display font: on or off', 'intime' ) )
{
$fonts[] = 'Playfair Display:400,400i,700,700i,800,900';
}
if ( $fonts ) {
$fonts_url = add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), '//fonts.googleapis.com/css' );
}
return $fonts_url;
}
endif;XML-RPC server accepts POST requests only.