tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Enable support for custom logo. */ add_theme_support('custom-logo', array( 'header-text' => array('site-title', 'site-description'), )); /* * 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 up the WordPress core custom header feature. add_theme_support('custom-header', apply_filters('best_education_custom_header_args', array( 'width' => 1920, 'height' => 1080, 'flex-height' => true, 'header-text' => false, 'default-text-color' => '000', 'default-image' => get_template_directory_uri().'/assets/images/cta-banner.jpg', ))); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'best-education'), 'top' => esc_html__('Top Menu', 'best-education'), 'social' => esc_html__('Social Menu', 'best-education'), )); /* * 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('best_education_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ))); /** * Load Init for Hook files. */ require get_template_directory().'/inc/hooks/hooks-init.php'; } endif; add_action('after_setup_theme', 'best_education_setup'); if (!function_exists('best_education_ocdi_files')): /** * OCDI files. * * @since 1.0.0 * * @return array Files. */ function best_education_ocdi_files() { return array( array( 'import_file_name' => esc_html__('Theme Demo Content', 'best-education'), 'local_import_file' => trailingslashit(get_template_directory()).'demo-content/best-education.xml', 'local_import_widget_file' => trailingslashit(get_template_directory()).'demo-content/best-education.wie', 'local_import_customizer_file' => trailingslashit(get_template_directory()).'demo-content/best-education.dat', ), ); } endif; add_filter('pt-ocdi/import_files', 'best_education_ocdi_files'); /** * 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 best_education_content_width() { $GLOBALS['content_width'] = apply_filters('best_education_content_width', 640); } add_action('after_setup_theme', 'best_education_content_width', 0); /** * function for google fonts */ if (!function_exists('best_education_fonts_url')): /** * Return fonts URL. * * @since 1.0.0 * @return string Fonts URL. */ function best_education_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* 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', 'best-education')) { $fonts[] = 'Roboto:100,300,400,500,700,900'; } if ($fonts) { $fonts_url = add_query_arg(array( 'family' => urldecode(implode('|', $fonts)), 'subset' => urldecode($subsets), ), '//fonts.googleapis.com/css'); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function best_education_scripts() { $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG?'':'.min'; wp_enqueue_style('font-awesome', get_template_directory_uri().'/assets/libraries/font-awesome/css/font-awesome'.$min.'.css'); wp_enqueue_style('bootstrap', get_template_directory_uri().'/assets/libraries/bootstrap/css/bootstrap'.$min.'.css'); wp_enqueue_style('slick', get_template_directory_uri().'/assets/libraries/slick/css/slick'.$min.'.css'); wp_enqueue_style('best-education-style', get_stylesheet_uri()); wp_add_inline_style('best-education-style', best_education_trigger_custom_css_action()); $fonts_url = best_education_fonts_url(); if (!empty($fonts_url)) { wp_enqueue_style('best-education-google-fonts', $fonts_url, array(), null); } wp_enqueue_script('best-education-navigation', get_template_directory_uri().'/assets/libraries/js/navigation.js', array(), '20151215', true); wp_enqueue_script('best-education-skip-link-focus-fix', get_template_directory_uri().'/assets/libraries/js/skip-link-focus-fix.js', array(), '20151215', true); wp_enqueue_script('jquery-bootstrap', get_template_directory_uri().'/assets/libraries/bootstrap/js/bootstrap'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('jquery-slick', get_template_directory_uri().'/assets/libraries/slick/js/slick'.$min.'.js', array('jquery'), '', true); wp_enqueue_script('jquery-stellar', get_template_directory_uri().'/assets/libraries/stellar/jquery.stellar.js', array('jquery'), '', true); wp_enqueue_script('best-education-script', get_template_directory_uri().'/assets/libraries/custom/js/custom-script.js', array('jquery'), '', 1); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'best_education_scripts'); /** * Enqueue admin scripts and styles. */ function best_education_admin_scripts($hook) { if ('widgets.php' === $hook) { wp_enqueue_media(); wp_enqueue_script('best-education-custom-widgets-script', get_template_directory_uri().'/assets/libraries/custom/js/widgets.js', array('jquery'), '1.0.0', true); wp_enqueue_style('best-education-custom-widgets-style', get_template_directory_uri().'/assets/libraries/custom/css/admin-widget.css'); } } add_action('admin_enqueue_scripts', 'best_education_admin_scripts'); /** * 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'; /** * Customizer additions. */ require get_template_directory().'/inc/customizer/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory().'/inc/jetpack.php'; /** * Load about. */ if (is_admin()) { require_once trailingslashit(get_template_directory()).'inc/about/class.about.php'; require_once trailingslashit(get_template_directory()).'inc/about/about.php'; } /** * Customizer control scripts and styles. * * @since 1.0.5 */ function best_education_customizer_control_scripts() { wp_enqueue_style('best-education-customize-controls', get_template_directory_uri().'/assets/libraries/custom/css/customize-controls.css'); } add_action('customize_controls_enqueue_scripts', 'best_education_customizer_control_scripts', 0);