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, 500, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'mastership' ), 'social' => esc_html__( 'Social Menu', 'mastership' ), ) ); /* * 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( 'mastership_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', 'mastership_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 mastership_content_width() { $GLOBALS['content_width'] = apply_filters( 'mastership_content_width', 819 ); } add_action( 'after_setup_theme', 'mastership_content_width', 0 ); if ( ! function_exists( 'mastership_fonts_url' ) ) : /** * Register Google fonts * * @return string Google fonts URL for the theme. */ function mastership_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Poppins, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Poppins font: on or off', 'mastership' ) ) { $fonts[] = 'Poppins:200,300,400,500,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 Mastership 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 mastership_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'mastership-fonts', 'queue' ) && 'preconnect' === $relation_type ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } return $urls; } add_filter( 'wp_resource_hints', 'mastership_resource_hints', 10, 2 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function mastership_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'mastership' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'mastership' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Home Page Area', 'mastership' ), 'id' => 'home-page-area', 'description' => esc_html__( 'Add widgets here.', 'mastership' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'mastership_widgets_init' ); /** * Function to detect SCRIPT_DEBUG on and off. * @return string If on, empty else return .min string. */ function mastership_min() { return defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; } /** * Enqueue scripts and styles. */ function mastership_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'mastership-fonts', mastership_fonts_url(), array(), null ); // slick wp_enqueue_style( 'jquery-slick', get_template_directory_uri() . '/assets/css/slick' . mastership_min() . '.css' ); // slick theme wp_enqueue_style( 'jquery-slick-theme', get_template_directory_uri() . '/assets/css/slick-theme' . mastership_min() . '.css' ); // font awesome wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome' . mastership_min() . '.css' ); wp_enqueue_style( 'mastership-style', get_stylesheet_uri() ); // Load the html5 shiv. wp_enqueue_script( 'html5', get_template_directory_uri() . '/assets/js/html5' . mastership_min() . '.js', array(), '3.7.3' ); wp_script_add_data( 'html5', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'mastership-navigation', get_template_directory_uri() . '/assets/js/navigation' . mastership_min() . '.js', array(), '20151215', true ); $mastership_l10n = array( 'quote' => mastership_get_svg( array( 'icon' => 'quote-right' ) ), 'expand' => esc_html__( 'Expand child menu', 'mastership' ), 'collapse' => esc_html__( 'Collapse child menu', 'mastership' ), 'icon' => mastership_get_svg( array( 'icon' => 'angle-down', 'fallback' => true ) ), ); wp_localize_script( 'mastership-navigation', 'mastership_l10n', $mastership_l10n ); wp_enqueue_script( 'mastership-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . mastership_min() . '.js', array(), '20151215', true ); 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' . mastership_min() . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'mastership-custom', get_template_directory_uri() . '/assets/js/custom' . mastership_min() . '.js', array( 'jquery' ), '20151215', true ); } add_action( 'wp_enqueue_scripts', 'mastership_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'; /** * TGM plugin additions. */ require get_template_directory() . '/inc/tgm-plugin/tgm-hook.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /** * OCDI plugin demo importer compatibility. */ if ( class_exists( 'OCDI_Plugin' ) ) { require get_template_directory() . '/inc/demo-import.php'; }