ude_once get_template_directory()."/bundle/author.php";
if ( ! function_exists( 'medcity_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 medcity_setup() {
// Make theme available for translation.
load_theme_textdomain( 'medcity', 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', 'medcity' ),
'footer-bottom' => esc_html__( 'Footer Bottom', 'medcity' ),
) );
/*
* 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( 'medcity_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(
'gallery',
'video',
) );
// Enable support for Post Thumbnails on posts and pages.
add_theme_support('post-thumbnails');
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' );
/* Add theme image size */
add_image_size( 'medcity-medium', 768, 768, true );
// For WP 5.8
remove_theme_support('widgets-block-editor');
}
endif;
add_action( 'after_setup_theme', 'medcity_setup' );
add_action( 'cms_locations', function ( $cms_locations ) {
return $cms_locations;
} );
/**
* 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 medcity_content_width() {
$GLOBALS['content_width'] = apply_filters( 'medcity_content_width', 640 );
}
add_action( 'after_setup_theme', 'medcity_content_width', 0 );
/**
* Register widget area.
*/
function medcity_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Blog Sidebar', 'medcity' ),
'id' => 'sidebar-blog',
'description' => esc_html__( 'Add widgets here.', 'medcity' ),
'before_widget' => '',
'before_title' => '
',
) );
if (class_exists('ReduxFramework')) {
register_sidebar( array(
'name' => esc_html__( 'Page Sidebar', 'medcity' ),
'id' => 'sidebar-page',
'description' => esc_html__( 'Add widgets here.', 'medcity' ),
'before_widget' => '',
'before_title' => '',
) );
}
if ( class_exists( 'Woocommerce' ) ) {
register_sidebar( array(
'name' => esc_html__( 'Shop Sidebar', 'medcity' ),
'id' => 'sidebar-shop',
'description' => esc_html__( 'Add widgets here.', 'medcity' ),
'before_widget' => '',
'before_title' => '',
) );
}
if (class_exists('ReduxFramework')) {
register_sidebar( array(
'name' => esc_html__( 'Emergency Sidebar', 'medcity' ),
'id' => 'sidebar-emergency',
'description' => esc_html__( 'Add widgets here to show in header.', 'medcity' ),
'before_widget' => '',
'before_title' => '',
) );
}
}
add_action( 'widgets_init', 'medcity_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function medcity_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( 'flaticon', get_template_directory_uri() . '/assets/css/flaticon.css', array(), $theme->get( 'Version' ) );
wp_enqueue_style( 'material-design-iconic-font', get_template_directory_uri() . '/assets/css/material-design-iconic-font.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( 'medcity-theme', get_template_directory_uri() . '/assets/css/theme.css', array(), $theme->get( 'Version' ) );
wp_add_inline_style( 'medcity-theme', medcity_inline_styles() );
wp_enqueue_style( 'medcity-google-fonts', medcity_fonts_url() );
/* Lib JS */
wp_enqueue_script('jquery-cookie', get_template_directory_uri() . '/assets/js/jquery.cookie.js', array( 'jquery' ), '1.4.1', true);
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( 'magnific-popup', get_template_directory_uri() . '/assets/js/magnific-popup.min.js', array( 'jquery' ), '1.0.0', true );
/* Theme JS */
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'medcity-main', get_template_directory_uri() . '/assets/js/main.js', array( 'jquery' ), $theme->get( 'Version' ), true );
wp_register_script('owl-carousel', get_template_directory_uri() . '/assets/js/owl.carousel.min.js', array('jquery'), '2.2.1', true);
wp_register_script( 'medcity-carousel', get_template_directory_uri() . '/assets/js/cms-carousel-owl.js', array( 'jquery' ), $theme->get( 'Version' ), true );
wp_enqueue_script( 'medcity-woocommerce', get_template_directory_uri() . '/woocommerce/woocommerce.js', array( 'jquery' ), $theme->get( 'Version' ), true );
wp_localize_script( 'medcity-main', 'main_data', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
/*
* Elementor Widget JS
*/
// Counter Widget
wp_register_script( 'cms-counter-widget-js', get_template_directory_uri() . '/elementor/js/cms-counter-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Progress Bar Widget
wp_register_script( 'cms-progressbar-widget-js', get_template_directory_uri() . '/elementor/js/cms-progressbar-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// Clients List Widget
wp_register_script( 'cms-clients-list-widget-js', get_template_directory_uri() . '/elementor/js/cms-clients-list-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// CMS Post Carousel Widget
wp_register_script( 'cms-post-carousel-widget-js', get_template_directory_uri() . '/elementor/js/cms-post-carousel-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
// CMS Image Carousel Widget
wp_register_script( 'cms-image-carousel-widget-js', get_template_directory_uri() . '/elementor/js/cms-image-carousel-widget.js', [ 'jquery' ], $theme->get( 'Version' ) );
wp_register_script('cms-post-grid-widget-js', get_template_directory_uri() . '/elementor/js/cms-post-grid-widget.js', [ 'isotope', 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('cms-toggle-widget-js', get_template_directory_uri() . '/elementor/js/cms-toggle-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('cms-accordion-widget-js', get_template_directory_uri() . '/elementor/js/cms-accordion-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
wp_register_script('cms-tabs-widget-js', get_template_directory_uri() . '/elementor/js/cms-tabs-widget.js', [ 'jquery' ], $theme->get( 'Version' ), true);
}
add_action( 'wp_enqueue_scripts', 'medcity_scripts' );
/* add editor styles */
function medcity_add_editor_styles() {
add_editor_style( 'editor-style.css' );
}
add_action( 'admin_init', 'medcity_add_editor_styles' );
/* add admin styles */
function medcity_admin_style() {
$theme = wp_get_theme( get_template() );
wp_enqueue_style( 'medcity-admin-style', get_template_directory_uri() . '/assets/css/admin.css' );
wp_enqueue_style( 'font-material-icon', get_template_directory_uri() . '/assets/css/material-design-iconic-font.min.css', array(), '2.2.0' );
wp_enqueue_script('medcity-main-admin', get_template_directory_uri() . '/assets/js/main-admin.js', array( 'jquery' ), $theme->get('Version'), true);
}
add_action( 'admin_enqueue_scripts', 'medcity_admin_style' );
/**
* Helper functions for this theme.
*/
require_once get_template_directory() . '/inc/theme-configs/theme-configs.php';
/**
* 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' );
/* Load lib Font */
require_once get_template_directory() . '/inc/libs/fontawesome.php';
require_once get_template_directory() . '/inc/libs/materialdesign.php';
/**
* Additional widgets for the theme
*/
require_once get_template_directory() . '/widgets/widget-recent-posts.php';
require_once get_template_directory() . '/widgets/widget-social.php';
require_once get_template_directory() . '/widgets/widget-contact-box.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( 'medcity_fonts_url' ) ) :
/**
* Register Google fonts.
*
* Create your own medcity_fonts_url() function to override in a child theme.
*
* @since league 1.1
*
* @return string Google fonts URL for the theme.
*/
function medcity_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
if ( 'off' !== _x( 'on', 'Quicksand font: on or off', 'medcity' ) ) {
$fonts[] = 'Quicksand:300,400,500,600,700';
}
if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'medcity' ) ) {
$fonts[] = 'Roboto:300,400,400i,500,500i,600,600i,700,700i';
}
if ( $fonts ) {
$fonts_url = add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), '//fonts.googleapis.com/css' );
}
return $fonts_url;
}
endif;
/* Favicon */
function medcity_site_favicon(){
$favicon = medcity_get_opt( 'favicon' );
if(!empty($favicon['url']))
echo '';
}
add_action('wp_head', 'medcity_site_favicon');
/**
* Add Template Woocommerce
*/
if(class_exists('Woocommerce')){
require_once( get_template_directory() . '/woocommerce/wc-function-hooks.php' );
}