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( 1280, 842, array( 'center', 'top' ) );
add_image_size( 'arctic-large', 1600, 1600, array( 'center', 'top' ) );
// Set the default content width.
$GLOBALS['content_width'] = 780;
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
/** Primary (menu location) */
'menu-1' => esc_html__( 'Primary', 'arctic-black' ),
/** SOcial Link (menu location) */
'menu-2' => esc_html__( 'Social Link', 'arctic-black' ),
) );
/*
* 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',
) );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, icons, and column width.
*/
add_editor_style( array( 'assets/css/editor-style.min.css' ) );
// This theme uses its own gallery styles.
add_filter( 'use_default_gallery_style', '__return_false' );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
}
endif;
add_action( 'after_setup_theme', 'arctic_black_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 arctic_black_content_width() {
$content_width = $GLOBALS['content_width'];
$GLOBALS['content_width'] = apply_filters( 'arctic_black_content_width', $content_width );
}
add_action( 'template_redirect', 'arctic_black_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function arctic_black_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'arctic-black' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'arctic-black' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer 1', 'arctic-black' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here.', 'arctic-black' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer 2', 'arctic-black' ),
'id' => 'sidebar-3',
'description' => esc_html__( 'Add widgets here.', 'arctic-black' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'After Footer', 'arctic-black' ),
'id' => 'sidebar-4',
'description' => esc_html__( 'Add widgets here.', 'arctic-black' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'arctic_black_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function arctic_black_scripts() {
wp_dequeue_style( 'contact-form-7' );
if ( wp_style_is( 'font-awesome', 'registered' ) ) {
wp_enqueue_style( 'font-awesome' );
} else {
wp_enqueue_style( 'font-awesome', get_template_directory_uri() .'/assets/css/font-awesome/css/font-awesome.min.css', array(), '4.7.0' );
}
/** Styles */
wp_enqueue_style( 'arctic-style', get_stylesheet_uri() );
/** Scripts */
wp_enqueue_script( 'jquery-fitvids', get_template_directory_uri() . '/assets/js/fitvids/jquery.fitvids.min.js', array( 'jquery' ), '1.2.0', true );
wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick/slick.min.js', array( 'jquery' ), '1.6.0', true );
wp_enqueue_script( 'arctic-script', get_template_directory_uri() . '/assets/js/arctic.min.js', array( 'jquery' ), '20151215', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'arctic_black_scripts' );
/**
* Arctic vendor script config.
*/
require get_template_directory() . '/inc/vendor/vendor.php';
/**
* Custom helper functions.
*/
require get_template_directory() . '/inc/utility.php';
/**
* Widgets additions.
*/
require get_template_directory() . '/inc/widgets/widgets.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';