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('adventure-blog-720-480', 720, 720, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus(array(
'mainnav' => esc_html__('Primary Menu', 'adventure-blog'),
'social' => __('Social Menu', 'adventure-blog'),
));
/*
* 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('adventure_blog_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(
'flex-width' => true,
'flex-height' => true,
));
// Set up the WordPress core custom header feature.
add_theme_support('custom-header', apply_filters('adventure_blog_custom_header_args', array(
'width' => 1920,
'height' => 1080,
'flex-height' => true,
'header-text' => false,
'default-image' => get_template_directory_uri().'/images/default-banner.jpg',
)));
}
endif;
add_action('after_setup_theme', 'adventure_blog_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 adventure_blog_content_width() {
$GLOBALS['content_width'] = apply_filters('adventure_blog_content_width', 640);
}
add_action('after_setup_theme', 'adventure_blog_content_width', 0);
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function adventure_blog_widgets_init() {
register_sidebar(array(
'name' => esc_html__('Sidebar', 'adventure-blog'),
'id' => 'sidebar-1',
'description' => esc_html__('Add widgets here.', 'adventure-blog'),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Column 1', 'adventure-blog'),
'id' => 'footer-col-1',
'description' => esc_html__('Displays items on footer section.', 'adventure-blog'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Column 2', 'adventure-blog'),
'id' => 'footer-col-2',
'description' => esc_html__('Displays items on footer section.', 'adventure-blog'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Column 3', 'adventure-blog'),
'id' => 'footer-col-3',
'description' => esc_html__('Displays items on footer section.', 'adventure-blog'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
}
add_action('widgets_init', 'adventure_blog_widgets_init');
/**
* Add Google Font
*/
if (!function_exists('adventure_blog_fonts_url')):
/**
* Return fonts URL.
*
* @since 1.0.0
* @return string Fonts URL.
*/
function adventure_blog_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
/* translators: If there are characters in your language that are not supported by Source Sans Pro, translate this to 'off'. Do not translate into your own language. */
if ('off' !== _x('on', 'Source Sans Pro font: on or off', 'adventure-blog')) {
$fonts[] = 'Source+Sans+Pro:300,300i,400,400i,700,700i';
}
/* translators: If there are characters in your language that are not supported by Source Sans Pro, translate this to 'off'. Do not translate into your own language. */
if ('off' !== _x('on', 'Source Sans Pro font: on or off', 'adventure-blog')) {
$fonts[] = 'Norican';
}
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 adventure_blog_scripts() {
$min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG?'':'.min';
$fonts_url = adventure_blog_fonts_url();
if (!empty($fonts_url)) {
wp_enqueue_style('adventure-blog-google-fonts', $fonts_url, array(), null);
}
wp_enqueue_style('jquery-slick', get_template_directory_uri().'/assets/slick/css/slick'.$min.'.css');
wp_enqueue_style('magnific-popup', get_template_directory_uri() . '/assets/magnific-popup/magnific-popup.css');
wp_enqueue_style('adventure-blog-style', get_stylesheet_uri());
wp_enqueue_script('adventure-blog-navigation', get_template_directory_uri().'/js/navigation.js', array(), '20151215', true);
wp_enqueue_script('adventure-blog-skip-link-focus-fix', get_template_directory_uri().'/js/skip-link-focus-fix.js', array(), '20151215', true);
wp_enqueue_script('jquery-slick', get_template_directory_uri().'/assets/slick/js/slick'.$min.'.js', array('jquery'), '', true);
wp_enqueue_script('jquery-magnific-popup', get_template_directory_uri() . '/assets/magnific-popup/jquery.magnific-popup' . $min . '.js', array('jquery'), '', true);
wp_enqueue_script('adventure-blog-script', get_template_directory_uri().'/js/script.js', array('jquery'), '', 1);
if (is_singular() && comments_open() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply');
}
wp_add_inline_style('adventure-blog-style', adventure_blog_custom_css());
}
add_action('wp_enqueue_scripts', 'adventure_blog_scripts');
/**
* Enqueue admin scripts and styles.
*/
function adventure_blog_admin_scripts()
{
wp_enqueue_style('admin-style', get_template_directory_uri() . '/assets/css/admin-style.css');
}
add_action('admin_enqueue_scripts', 'adventure_blog_admin_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';
/**
* Custom functions for this theme.
*/
require get_template_directory().'/inc/custom-functions.php';
/**
* Custom hooks for this theme.
*/
require get_template_directory().'/inc/custom-hooks.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/customizer.php';
/**
* SVG icons functions and filters.
*/
require get_parent_theme_file_path('/inc/icon-functions.php');
/**
* Load Jetpack compatibility file.
*/
if (defined('JETPACK__VERSION')) {
require get_template_directory().'/inc/jetpack.php';
}
/**
* CSS related hooks.
*/
if (!function_exists('adventure_blog_custom_css')) :
/**
* Do action theme custom CSS.
*
* @since 1.0.0
*/
function adventure_blog_custom_css()
{
$adventure_blog_banner_overlay = adventure_blog_get_option('enable_overlay_option');
?>