/** * 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' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebars( 4, array( 'name' => esc_html__( 'Optional Sidebar %d', 'educollege' ), 'id' => 'optional-sidebar', 'description' => esc_html__( 'Add widgets here.', 'educollege' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'educollege_widgets_init' ); if ( ! function_exists( 'educollege_fonts_url' ) ) : /** * Register Google fonts * * @return string Google fonts URL for the theme. */ function educollege_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Lato, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'educollege' ) ) { $fonts[] = 'Lato:400,700'; } /* translators: If there are characters in your language that are not supported by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'educollege' ) ) { $fonts[] = 'Open Sans:400,600,700'; } $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 Educollege 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 educollege_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'educollege-fonts', 'queue' ) && 'preconnect' === $relation_type ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } return $urls; } add_filter( 'wp_resource_hints', 'educollege_resource_hints', 10, 2 ); /** * Enqueue scripts and styles. */ function educollege_scripts() { $options = educollege_get_theme_options(); // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'educollege-fonts', wptt_get_webfont_url( educollege_fonts_url() ), array(), null ); // font awesome wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome' . educollege_min() . '.css' ); // slick wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/css/slick' . educollege_min() . '.css' ); // slick theme wp_enqueue_style( 'slick-theme', get_template_directory_uri() . '/assets/css/slick-theme' . educollege_min() . '.css' ); // blocks wp_enqueue_style( 'educollege-blocks', get_template_directory_uri() . '/assets/css/blocks' . educollege_min() . '.css' ); wp_enqueue_style( 'educollege-style', get_stylesheet_uri() ); // Load the html5 shiv. wp_enqueue_script( 'educollege-html5', get_template_directory_uri() . '/assets/js/html5' . educollege_min() . '.js', array(), '3.7.3' ); wp_script_add_data( 'educollege-html5', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'educollege-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . educollege_min() . '.js', array(), '20160412', true ); wp_enqueue_script( 'educollege-navigation', get_template_directory_uri() . '/assets/js/navigation' . educollege_min() . '.js', array(), '20151215', true ); $educollege_l10n = array( 'quote' => educollege_get_svg( array( 'icon' => 'quote-right' ) ), 'expand' => esc_html__( 'Expand child menu', 'educollege' ), 'collapse' => esc_html__( 'Collapse child menu', 'educollege' ), 'icon' => educollege_get_svg( array( 'icon' => 'down', 'fallback' => true ) ), ); wp_localize_script( 'educollege-navigation', 'educollege_l10n', $educollege_l10n ); 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' . educollege_min() . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'educollege-custom', get_template_directory_uri() . '/assets/js/custom'. educollege_min() .'.js', array( 'jquery' ), '20151215', true ); } add_action( 'wp_enqueue_scripts', 'educollege_scripts' ); /** * Enqueue editor styles for Gutenberg * * @since Educollege 1.0.0 */ function educollege_block_editor_styles() { // Block styles. wp_enqueue_style( 'educollege-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks' . educollege_min() . '.css' ) ); wp_enqueue_style( 'educollege-fonts', wptt_get_webfont_url( educollege_fonts_url() ), array(), null ); } add_action( 'enqueue_block_editor_assets', 'educollege_block_editor_styles' ); /** * 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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load core file */ require get_template_directory() . '/inc/core.php'; <head> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://skmcdhorimana.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fskmcdhorimana.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://skmcdhorimana.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fskmcdhorimana.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://skmcdhorimana.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://skmcdhorimana.com/wp-content/plugins/tp-education/assets/css/font-awesome.min.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-ui-css' href='https://skmcdhorimana.com/wp-content/plugins/tp-education/assets/css/jquery-ui.min.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='tp-education-style-css' href='https://skmcdhorimana.com/wp-content/plugins/tp-education/assets/css/tp-education-style.min.css?ver=6.9' type='text/css' media='all' /> <link rel='stylesheet' id='cookieadmin-style-css' href='https://skmcdhorimana.com/wp-content/plugins/cookieadmin/assets/css/consent.css?ver=1.1.4' type='text/css' media='all' /> <script type="text/javascript" src="https://skmcdhorimana.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://skmcdhorimana.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" id="tp_education_script-js-extra"> /* <![CDATA[ */ var tp_education_ajax = {"ajaxurl":"https://skmcdhorimana.com/wp-admin/admin-ajax.php"}; //# sourceURL=tp_education_script-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://skmcdhorimana.com/wp-content/plugins/tp-education/assets/js/tp-education-like.min.js?ver=1" id="tp_education_script-js"></script> <link rel="https://api.w.org/" href="https://skmcdhorimana.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://skmcdhorimana.com/wp-json/wp/v2/pages/253" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://skmcdhorimana.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9" /> <link rel="canonical" href="https://skmcdhorimana.com/" /> <link rel='shortlink' href='https://skmcdhorimana.com/' /> <link rel="icon" href="https://skmcdhorimana.com/wp-content/uploads/2020/12/cropped-favi-32x32.png" sizes="32x32" /> <link rel="icon" href="https://skmcdhorimana.com/wp-content/uploads/2020/12/cropped-favi-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://skmcdhorimana.com/wp-content/uploads/2020/12/cropped-favi-180x180.png" /> <meta name="msapplication-TileImage" content="https://skmcdhorimana.com/wp-content/uploads/2020/12/cropped-favi-270x270.png" /> </head> <body class="home wp-singular page-template-default page page-id-253 wp-custom-logo wp-theme-educollege">