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' );
add_image_size( 'blog-mantra-img', 784, 366, true );
add_image_size( 'blog-mantra-full-img', 833, 389, true );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', 'blog-mantra' ),
'footer' => esc_html__( 'Footer', 'blog-mantra' ),
) );
/*
* 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( 'blog_mantra_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', 'blog_mantra_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 blog_mantra_content_width() {
// This variable is intended to be overruled from themes.
// Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
$GLOBALS['content_width'] = apply_filters( 'blog_mantra_content_width', 640 );
}
add_action( 'after_setup_theme', 'blog_mantra_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function blog_mantra_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'blog-mantra' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'blog-mantra' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer: One', 'blog-mantra' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widget here. This section is used for top footer.', 'blog-mantra' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer: Two', 'blog-mantra' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widget here. This section is used for top footer.', 'blog-mantra' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer: Three', 'blog-mantra' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widget here. This section is used for top footer.', 'blog-mantra' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'blog_mantra_widgets_init' );
/**
* Register Google fonts
*/
if ( ! function_exists( 'blog_mantra_fonts_url' ) ) {
/**
*
* @return string Google fonts URL for the theme.
*/
function blog_mantra_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
/* 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', 'blog-mantra' ) ) {
$fonts[] = 'Open Sans:300,300i,400,400i,600,700';
}
/* translators: If there are characters in your language that are not supported by Roboto Condensed, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Roboto Condensed', 'blog-mantra' ) ) {
$fonts[] = 'Roboto Condensed:300,300i,400,400i,700';
}
if ( $fonts ) {
$fonts_url = add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), 'https://fonts.googleapis.com/css' );
}
return $fonts_url;
}
}
/**
* Enqueue scripts and styles.
*/
function blog_mantra_scripts() {
$theme_options = blog_mantra_theme_options();
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css' );
wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/assets/css/fontawesome-all.min.css' );
wp_enqueue_style( 'blog-mantra-fonts', blog_mantra_fonts_url() );
wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/assets/css/owl.carousel.min.css' );
wp_enqueue_style( 'owl-theme-default', get_template_directory_uri() . '/assets/css/owl.theme.default.min.css' );
wp_enqueue_style( 'blog-mantra-custom', get_template_directory_uri() . '/assets/css/custom.css' );
wp_enqueue_style( 'blog-mantra-style', get_stylesheet_uri() );
wp_enqueue_style( 'blog-mantra-media', get_template_directory_uri() . '/assets/css/media.css' );
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/bootstrap.min.js', array('jquery'), '4.0.0', true );
wp_enqueue_script( 'fontawesome', get_template_directory_uri() . '/assets/js/fontawesome-all.min.js', array('jquery'), '5.0.0', true );
wp_enqueue_script( 'owl-carousel', get_template_directory_uri() . '/assets/js/owl.carousel.min.js', array('jquery'), '2.2.1', true );
wp_enqueue_script( 'blog-mantra-custom', get_template_directory_uri() . '/assets/js/custom.js', array('jquery'), '20151215', true );
if( 1 === $theme_options['sticky_header'] ){
wp_enqueue_script( 'blog-mantra-sticky-header', get_template_directory_uri() . '/assets/js/sticky.header.js', array('jquery'), '20151216', true );
}
wp_enqueue_script( 'blog-mantra-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), '20151215', true );
wp_enqueue_script( 'blog-mantra-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20151215', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'blog_mantra_scripts' );
/**
* Load Blog Mantra Functions.
*/
require get_template_directory() . '/inc/init-functions.php';