tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/**
* Editor styles.
*/
add_editor_style( 'editor-style.css' );
/**
* Responsive embeds
*/
add_theme_support( 'responsive-embeds' );
/**
* Gutenberg wide and full images support
*/
add_theme_support( 'align-wide' );
// Add custom colors to Gutenberg
add_theme_support(
'editor-color-palette',
array(
array(
'name' => esc_html__( 'Black', 'illustratr' ),
'slug' => 'black',
'color' => '#24282d',
),
array(
'name' => esc_html__( 'Dark Gray', 'illustratr' ),
'slug' => 'dark-gray',
'color' => '#464d4d',
),
array(
'name' => esc_html__( 'Medium Gray', 'illustratr' ),
'slug' => 'medium-gray',
'color' => '#7f8d8c',
),
array(
'name' => esc_html__( 'Light Gray', 'illustratr' ),
'slug' => 'light-gray',
'color' => '#f1f2f3',
),
array(
'name' => esc_html__( 'White', 'illustratr' ),
'slug' => 'white',
'color' => '#ffffff',
),
array(
'name' => esc_html__( 'Red', 'illustratr' ),
'slug' => 'red',
'color' => '#e06d5e',
),
array(
'name' => esc_html__( 'Dark Red', 'illustratr' ),
'slug' => 'dark-red',
'color' => '#b44738',
),
)
);
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
*/
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 400, 300, true );
add_image_size( 'illustratr-featured-image', 1100, 500, true );
add_image_size( 'illustratr-portfolio-featured-image', 800, 9999 );
// This theme uses wp_nav_menu() in two locations.
register_nav_menus(
array(
'primary' => __( 'Primary Menu', 'illustratr' ),
'social' => __( 'Social Menu', 'illustratr' ),
)
);
// Enable support for Post Formats.
add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio' ) );
// Setup the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'illustratr_custom_background_args',
array(
'default-color' => '24282d',
'default-image' => '',
)
)
);
// Enable support for HTML5 markup.
add_theme_support(
'html5',
array(
'comment-list',
'search-form',
'comment-form',
'gallery',
)
);
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
}
endif; // illustratr_setup
add_action( 'after_setup_theme', 'illustratr_setup' );
/**
* Register widgetized area and update sidebar with default widgets.
*/
function illustratr_widgets_init() {
register_sidebar(
array(
'name' => __( 'Footer', 'illustratr' ),
'id' => 'sidebar-1',
'description' => __( 'Hidden footer area that is revealed by the + button at the bottom of each page', 'illustratr' ),
'before_widget' => '',
'before_title' => '
',
)
);
}
add_action( 'widgets_init', 'illustratr_widgets_init' );
/**
* Register Source Sans Pro font.
*
* @return string
*/
function illustratr_source_sans_pro_font_url() {
$source_sans_pro_font_url = '';
/* 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', 'illustratr' ) ) {
$subsets = 'latin,latin-ext';
/* translators: To add an additional Source Sans Pro character subset specific to your language, translate this to 'vietnamese'. Do not translate into your own language. */
$subset = _x( 'no-subset', 'Source Sans Pro font: add new subset (vietnamese)', 'illustratr' );
if ( 'vietnamese' == $subset ) {
$subsets .= ',vietnamese';
}
$query_args = array(
'family' => urlencode( 'Source Sans Pro:400,700,900,400italic,700italic,900italic' ),
'subset' => urlencode( $subsets ),
);
$source_sans_pro_font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return $source_sans_pro_font_url;
}
/**
* Register PT Serif font.
*
* @return string
*/
function illustratr_pt_serif_font_url() {
$pt_serif_font_url = '';
/* translators: If there are characters in your language that are not supported
* by PT Serif, translate this to 'off'. Do not translate into your own language.
*/
if ( 'off' !== _x( 'on', 'PT Serif font: on or off', 'illustratr' ) ) {
$subsets = 'latin,latin-ext';
/* translators: To add an additional PT Serif character subset specific to your language, translate this to 'cyrillic'. Do not translate into your own language. */
$subset = _x( 'no-subset', 'PT Serif font: add new subset (cyrillic)', 'illustratr' );
if ( 'cyrillic' == $subset ) {
$subsets .= ',cyrillic-ext,cyrillic';
}
$query_args = array(
'family' => urlencode( 'PT Serif:400,700,400italic,700italic' ),
'subset' => urlencode( $subsets ),
);
$pt_serif_font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return $pt_serif_font_url;
}
/**
* Register Source Code Pro.
*
* @return string
*/
function illustratr_source_code_pro_font_url() {
$source_code_pro_font_url = '';
/* translators: If there are characters in your language that are not supported
* by Source Code Pro, translate this to 'off'. Do not translate into your own language.
*/
if ( 'off' !== _x( 'on', 'Source Code Pro font: on or off', 'illustratr' ) ) {
$query_args = array(
'family' => urlencode( 'Source Code Pro' ),
);
$source_code_pro_font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
return $source_code_pro_font_url;
}
/**
* Enqueue scripts and styles.
*/
function illustratr_scripts() {
// Gutenberg styles
wp_enqueue_style( 'illustratr-blocks', get_template_directory_uri() . '/blocks.css' );
wp_enqueue_style( 'illustratr-source-sans-pro', illustratr_source_sans_pro_font_url(), array(), null );
wp_enqueue_style( 'illustratr-pt-serif', illustratr_pt_serif_font_url(), array(), null );
wp_enqueue_style( 'illustratr-source-code-pro', illustratr_source_code_pro_font_url(), array(), null );
if ( wp_style_is( 'genericons', 'registered' ) ) {
wp_enqueue_style( 'genericons' );
} else {
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.4.1' );
}
wp_enqueue_style( 'illustratr-style', get_stylesheet_uri() );
wp_enqueue_script( 'illustratr-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
wp_enqueue_script( 'illustratr-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
if ( is_active_sidebar( 'sidebar-1' ) ) {
wp_enqueue_script( 'illustratr-sidebar', get_template_directory_uri() . '/js/sidebar.js', array( 'jquery', 'masonry' ), '20140325', true );
}
wp_enqueue_script( 'illustratr-script', get_template_directory_uri() . '/js/illustratr.js', array( 'jquery', 'underscore' ), '20140317', true );
}
add_action( 'wp_enqueue_scripts', 'illustratr_scripts' );
/**
* Gutenberg Editor Styles
*/
function apostrophe_2_editor_styles() {
wp_enqueue_style( 'illustratr-editor-block-style', get_template_directory_uri() . '/editor-blocks.css' );
wp_enqueue_style( 'illustratr-source-sans-pro', illustratr_source_sans_pro_font_url(), array(), null );
wp_enqueue_style( 'illustratr-pt-serif', illustratr_pt_serif_font_url(), array(), null );
wp_enqueue_style( 'illustratr-source-code-pro', illustratr_source_code_pro_font_url(), array(), null );
}
add_action( 'enqueue_block_editor_assets', 'apostrophe_2_editor_styles' );
/**
* Enqueue Google fonts style to admin screen for custom header display.
*
* @return void
*/
function illustratr_admin_fonts() {
wp_enqueue_style( 'illustratr-source-sans-pro', illustratr_source_sans_pro_font_url(), array(), null );
wp_enqueue_style( 'illustratr-pt-serif', illustratr_pt_serif_font_url(), array(), null );
wp_enqueue_style( 'illustratr-source-code-pro', illustratr_source_code_pro_font_url(), array(), null );
}
add_action( 'admin_print_scripts-appearance_page_custom-header', 'illustratr_admin_fonts' );
/**
* 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 that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';