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' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'educateup' ),
'social' => esc_html__( 'Social', 'educateup' ),
)
);
/*
* 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',
'style',
'script',
)
);
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'educateup_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 support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
}
endif;
add_action( 'after_setup_theme', 'educateup_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 educateup_content_width() {
$GLOBALS['content_width'] = apply_filters( 'educateup_content_width', 640 );
}
add_action( 'after_setup_theme', 'educateup_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function educateup_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'educateup' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'educateup' ),
'before_widget' => '',
'before_title' => '
',
)
);
// Regsiter 4 footer widgets.
register_sidebars(
4,
array(
/* translators: %d: Footer Widget count. */
'name' => esc_html__( 'Footer Widget %d', 'educateup' ),
'id' => 'footer-widget',
'description' => esc_html__( 'Add widgets here.', 'educateup' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'educateup_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function educateup_scripts() {
// Append .min if SCRIPT_DEBUG is false.
$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
// Bootstrap.
wp_enqueue_style( 'educateup-bootstrap-grid-style', get_template_directory_uri() . '/assets/css/bootstrap-grid' . $min . '.css', array(), EDUCATEUP_VERSION );
wp_enqueue_style( 'educateup-bootstrap-utilities-style', get_template_directory_uri() . '/assets/css/bootstrap-utilities' . $min . '.css', array(), EDUCATEUP_VERSION );
wp_enqueue_style( 'educateup-bootstrap-icon-style', get_template_directory_uri() . '/assets/css/bootstrap-icons' . $min . '.css', array(), EDUCATEUP_VERSION );
// Google fonts.
wp_enqueue_style( 'educateup-google-fonts', educateup_get_fonts_url(), array(), null );
// Main style.
wp_enqueue_style( 'educateup-style', get_stylesheet_uri(), array(), EDUCATEUP_VERSION );
// Navigation script.
wp_enqueue_script( 'educateup-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), EDUCATEUP_VERSION, true );
// Custom script.
wp_enqueue_script( 'educateup-custom-script', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array( 'jquery' ), EDUCATEUP_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'educateup_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';
/**
* Google Fonts
*/
require get_template_directory() . '/inc/google-fonts.php';
/**
* Dynamic CSS
*/
require get_template_directory() . '/inc/dynamic-css.php';
/**
* Breadcrumb
*/
require get_template_directory() . '/inc/class-breadcrumb-trail.php';
/**
* Recommended Plugins
*/
require get_template_directory() . '/inc/tgmpa/recommended-plugins.php';
/**
* Load Social Widget
*/
require get_template_directory() . '/inc/widget-social-icons.php';
/**
* One Click Demo Import after import setup.
*/
if ( class_exists( 'OCDI_Plugin' ) ) {
require get_template_directory() . '/inc/ocdi.php';
}
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}