/**
* 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' => '',
'after_widget' => '',
'before_title' => '