/**
* Uni Education Pro functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package uni_education_pro
*/
if ( ! function_exists( 'uni_education_pro_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 uni_education_pro_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Uni Education Pro, use a find and replace
* to change 'uni-education-pro' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'uni-education-pro', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded
tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 700, 450, true );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'uni-education-pro' ),
'social' => esc_html__( 'Social Menu', 'uni-education-pro' ),
'footer' => esc_html__( 'Footer Menu', 'uni-education-pro' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'uni_education_pro_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 theme support for page excerpt.
add_post_type_support( 'page', 'excerpt' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 250,
'width' => 400,
'flex-width' => true,
'flex-height' => true,
'header-text' => array( 'site-title', 'site-description' ),
) );
// Enable support for footer widgets.
add_theme_support( 'footer-widgets', 4 );
// Load Footer Widget Support.
require_if_theme_supports( 'footer-widgets', get_template_directory() . '/inc/footer-widget.php' );
}
endif;
add_action( 'after_setup_theme', 'uni_education_pro_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.
*
* @global int $content_width
*/
function uni_education_pro_content_width() {
$GLOBALS['content_width'] = apply_filters( 'uni_education_pro_content_width', 819 );
}
add_action( 'after_setup_theme', 'uni_education_pro_content_width', 0 );
if ( ! function_exists( 'uni_education_pro_fonts_url' ) ) :
/**
* Register Google fonts
*
* @return string Google fonts URL for the theme.
*/
function uni_education_pro_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
/* translators: If there are characters in your language that are not supported by PT Serif, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'PT Serif font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'PT Serif:200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by PT Sans, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'PT Sans font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'PT Sans:200,300,400,500,600,700';
}
/* header font */
/* translators: If there are characters in your language that are not supported by Rajdhani, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Rajdhani font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Rajdhani: 200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by Roboto, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Roboto: 200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by Philosopher, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Philosopher font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Philosopher: 200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by Slabo 27px, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Slabo 27px font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Slabo 27px: 200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by Dosis, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Dosis font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Dosis: 200,300,400,500,600,700';
}
/* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Montserrat: 200,300,400,500,600,700';
}
/* Body Font */
/* translators: If there are characters in your language that are not supported by News Cycle, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'News Cycle font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'News Cycle: 300,400,500';
}
/* translators: If there are characters in your language that are not supported by Pontano Sans, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Pontano Sans font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Pontano Sans: 300,400,500';
}
/* translators: If there are characters in your language that are not supported by Gudea, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Gudea font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Gudea: 300,400,500';
}
/* translators: If there are characters in your language that are not supported by Quattrocento, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Quattrocento font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Quattrocento: 300,400,500';
}
/* translators: If there are characters in your language that are not supported by Khand, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Khand font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Khand: 300,400,500';
}
/* translators: If there are characters in your language that are not supported by Oxygen, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Oxygen font: on or off', 'uni-education-pro' ) ) {
$fonts[] = 'Oxygen: 300,400,500';
}
$query_args = array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
);
if ( $fonts ) {
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return esc_url_raw( $fonts_url );
}
endif;
/**
* Add preconnect for Google Fonts.
*
* @since Uni Education Pro 1.0.0
*
* @param array $urls URLs to print for resource hints.
* @param string $relation_type The relation type the URLs are printed.
* @return array $urls URLs to print for resource hints.
*/
function uni_education_pro_resource_hints( $urls, $relation_type ) {
if ( wp_style_is( 'uni-education-pro-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
$urls[] = array(
'href' => 'https://fonts.gstatic.com',
'crossorigin',
);
}
return $urls;
}
add_filter( 'wp_resource_hints', 'uni_education_pro_resource_hints', 10, 2 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function uni_education_pro_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'uni-education-pro' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'uni-education-pro' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebars( 4, array(
'name' => esc_html__( 'Optional Sidebar %d', 'uni-education-pro' ),
'id' => 'optional-sidebar',
'description' => esc_html__( 'Add widgets here.', 'uni-education-pro' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Home Page Area', 'uni-education-pro' ),
'id' => 'home-page-area',
'description' => esc_html__( 'Add widgets here.', 'uni-education-pro' ),
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'About Page Area', 'uni-education-pro' ),
'id' => 'about-page-area',
'description' => esc_html__( 'Add widgets here.', 'uni-education-pro' ),
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Service Page Area', 'uni-education-pro' ),
'id' => 'service-page-area',
'description' => esc_html__( 'Add widgets here.', 'uni-education-pro' ),
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'uni_education_pro_widgets_init' );
/**
* Function to detect SCRIPT_DEBUG on and off.
* @return string If on, empty else return .min string.
*/
function uni_education_pro_min() {
return defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
}
/**
* Enqueue scripts and styles.
*/
function uni_education_pro_scripts() {
// Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'uni-education-pro-fonts', uni_education_pro_fonts_url(), array(), null );
// slick
wp_enqueue_style( 'jquery-slick', get_template_directory_uri() . '/assets/css/slick' . uni_education_pro_min() . '.css' );
// slick theme
wp_enqueue_style( 'jquery-slick-theme', get_template_directory_uri() . '/assets/css/slick-theme' . uni_education_pro_min() . '.css' );
// font awesome
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome' . uni_education_pro_min() . '.css' );
wp_enqueue_style( 'uni-education-pro-style', get_stylesheet_uri() );
if ( ! in_array( uni_education_pro_theme_option( 'theme_color', 'default' ), array( 'default', 'custom' ) ) ) :
wp_enqueue_style( 'uni-education-pro-colors', get_template_directory_uri() . '/assets/css/' . uni_education_pro_theme_option( 'theme_color', 'red' ) . uni_education_pro_min() . '.css', array( 'uni-education-pro-style' ), '1.0' );
endif;
// Load the html5 shiv.
wp_enqueue_script( 'html5', get_template_directory_uri() . '/assets/js/html5' . uni_education_pro_min() . '.js', array(), '3.7.3' );
wp_script_add_data( 'html5', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'uni-education-pro-navigation', get_template_directory_uri() . '/assets/js/navigation' . uni_education_pro_min() . '.js', array(), '20151215', true );
$uni_education_pro_l10n = array(
'quote' => uni_education_pro_get_svg( array( 'icon' => 'quote-right' ) ),
'expand' => esc_html__( 'Expand child menu', 'uni-education-pro' ),
'collapse' => esc_html__( 'Collapse child menu', 'uni-education-pro' ),
'icon' => uni_education_pro_get_svg( array( 'icon' => 'angle-down', 'fallback' => true ) ),
);
wp_localize_script( 'uni-education-pro-navigation', 'uni_education_pro_l10n', $uni_education_pro_l10n );
wp_enqueue_script( 'uni-education-pro-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . uni_education_pro_min() . '.js', array(), '20151215', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick' . uni_education_pro_min() . '.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'uni-education-pro-custom', get_template_directory_uri() . '/assets/js/custom' . uni_education_pro_min() . '.js', array( 'jquery' ), '20151215', true );
if ( 'infinite' == uni_education_pro_theme_option( 'pagination_type' ) ) {
wp_enqueue_script( 'uni-education-pro-infinite', get_template_directory_uri() . '/assets/js/infinite' . uni_education_pro_min() . '.js', array( 'jquery' ), '', true );
}
}
add_action( 'wp_enqueue_scripts', 'uni_education_pro_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* TGM plugin additions.
*/
require get_template_directory() . '/inc/tgm-plugin/tgm-hook.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
* WooCommerce plugin compatibility.
*/
if ( class_exists( 'WooCommerce' ) ) {
require get_template_directory() . '/inc/woocommerce.php';
}
/**
* OCDI plugin demo importer compatibility.
*/
if ( class_exists( 'OCDI_Plugin' ) ) {
require get_template_directory() . '/inc/demo-import.php';
}