true,
'flex-width' => true,
) );
/*
* 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' );
/*
* 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-zone-slider', 726, 500, true);
add_image_size('blog-zone-custom', 384, 235, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'menu-1' => esc_html__( 'Primary', 'blog-zone' ),
) );
/*
* 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_zone_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// 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, and column width.
*/
add_editor_style(array(get_template_directory_uri() . '/assets/css/editor-style.css'));
}
endif;
add_action( 'after_setup_theme', 'blog_zone_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_zone_content_width() {
$GLOBALS['content_width'] = apply_filters( 'blog_zone_content_width', 640 );
}
add_action( 'after_setup_theme', 'blog_zone_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function blog_zone_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'blog-zone' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer One', 'blog-zone' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Two', 'blog-zone' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Three', 'blog-zone' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Four', 'blog-zone' ),
'id' => 'footer-4',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Header Advertisement', 'blog-zone' ),
'id' => 'advertisement-1',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Content Advertisement', 'blog-zone' ),
'id' => 'advertisement-2',
'description' => esc_html__( 'Add widgets here.', 'blog-zone' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'blog_zone_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function blog_zone_scripts() {
wp_enqueue_style( 'jquery-meanmenu', get_template_directory_uri() . '/assets/css/meanmenu.css', '', '2.0.2' );
wp_enqueue_style( 'jquery-slick', get_template_directory_uri() . '/assets/css/slick.css', '', '1.6.0' );
wp_enqueue_style( 'blog-zone-style', get_stylesheet_uri() );
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome.min.css', '', '4.7.0' );
wp_enqueue_style( 'blog-zone-font', 'https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i', '', '1.0.6' );
wp_enqueue_script( 'blog-zone-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), '20151215', true );
wp_enqueue_script( 'blog-zone-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20151215', true );
wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick.js', array('jquery'), '1.6.0', true );
wp_enqueue_script( 'jquery-meanmenu', get_template_directory_uri() . '/assets/js/jquery.meanmenu.js', array('jquery'), '2.0.2', true );
wp_enqueue_script( 'blog-zone-custom', get_template_directory_uri() . '/assets/js/custom.js', array( 'jquery' ), '1.0.6', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'blog_zone_scripts' );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Additional features to allow styling of the templates.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer/customizer.php';
/**
* Helper functions additions.
*/
require get_template_directory() . '/inc/customizer/get-options.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
/**
* Widgets additions.
*/
require get_template_directory() . '/inc/widgets/widgets.php';
/* Turn on wide images */
add_theme_support( 'align-wide' );