/**
* Theme Palace functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Theme Palace
* @subpackage Educollege
* @since Educollege 1.0.0
*/
if ( ! function_exists( 'educollege_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 educollege_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Theme Palace, use a find and replace
* to change 'educollege' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'educollege' );
// 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' );
add_theme_support( 'responsive-embeds' );
add_theme_support( 'register_block_pattern' );
add_theme_support( 'register_block_style' );
// 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-widgets.php' );
/*
* 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( 600, 450, true );
// Set the default content width.
$GLOBALS['content_width'] = 525;
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', 'educollege' ),
'social' => esc_html__( 'Social', 'educollege' ),
) );
/*
* 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( 'educollege_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// This setup supports logo, site-title & site-description
add_theme_support( 'custom-logo', array(
'height' => 70,
'width' => 120,
'flex-height' => true,
'flex-width' => true,
'header-text' => array( 'site-title', 'site-description' ),
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, icons, and column width.
*/
add_editor_style( array( '/assets/css/editor-style' . educollege_min() . '.css', educollege_fonts_url() ) );
// Gutenberg support
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'Blue', 'educollege' ),
'slug' => 'blue',
'color' => '#2c7dfa',
),
array(
'name' => esc_html__( 'Green', 'educollege' ),
'slug' => 'green',
'color' => '#07d79c',
),
array(
'name' => esc_html__( 'Orange', 'educollege' ),
'slug' => 'orange',
'color' => '#ff8737',
),
array(
'name' => esc_html__( 'Black', 'educollege' ),
'slug' => 'black',
'color' => '#2f3633',
),
array(
'name' => esc_html__( 'Grey', 'educollege' ),
'slug' => 'grey',
'color' => '#82868b',
),
));
add_theme_support( 'align-wide' );
add_theme_support( 'editor-font-sizes', array(
array(
'name' => esc_html__( 'small', 'educollege' ),
'shortName' => esc_html__( 'S', 'educollege' ),
'size' => 12,
'slug' => 'small'
),
array(
'name' => esc_html__( 'regular', 'educollege' ),
'shortName' => esc_html__( 'M', 'educollege' ),
'size' => 16,
'slug' => 'regular'
),
array(
'name' => esc_html__( 'larger', 'educollege' ),
'shortName' => esc_html__( 'L', 'educollege' ),
'size' => 36,
'slug' => 'larger'
),
array(
'name' => esc_html__( 'huge', 'educollege' ),
'shortName' => esc_html__( 'XL', 'educollege' ),
'size' => 48,
'slug' => 'huge'
)
));
add_theme_support('editor-styles');
add_theme_support( 'wp-block-styles' );
}
endif;
add_action( 'after_setup_theme', 'educollege_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 educollege_content_width() {
$content_width = $GLOBALS['content_width'];
$sidebar_position = educollege_layout();
switch ( $sidebar_position ) {
case 'no-sidebar':
$content_width = 1170;
break;
case 'left-sidebar':
case 'right-sidebar':
$content_width = 819;
break;
default:
break;
}
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
$content_width = 1170;
}
/**
* Filter Educollege content width of the theme.
*
* @since Educollege 1.0.0
*
* @param int $content_width Content width in pixels.
*/
$GLOBALS['content_width'] = apply_filters( 'educollege_content_width', $content_width );
}
add_action( 'template_redirect', 'educollege_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function educollege_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'educollege' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'educollege' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '