tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for custom logo.
*
* @since Alchemist 1.0
*/
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 100,
'flex-height' => true,
'flex-width' => true,
) );
/*
* 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' );
// Used in excerpt image Top 3:2 Ratio
set_post_thumbnail_size( 640, 427, true );
// Used in Slider, Promotion Headline and Header Media Home
add_image_size( 'alchemist-slider', 1920, 822, true );
// Used in Header Media for single pages
add_image_size( 'alchemist-custom-header-single', 1920, 350, true );
// Used in Hero Content, 3:2 ratio
add_image_size( 'alchemist-hero-content', 680, 453, true );
// Used in Portfolio 1:1 ratio
add_image_size( 'alchemist-portfolio', 640, 640, true );
// Used in team, 1:1 ratio
add_image_size( 'alchemist-team', 300, 300, true );
// Used in testimonial, 1:1 ratio
add_image_size( 'alchemist-testimonial', 100, 100, true );
// Used in services, 1:1 ratio
add_image_size( 'alchemist-service', 82, 82, true );
// Used in Logo Slider, 16:9 ratio
add_image_size( 'alchemist-logo', 190, 107, true );
// Used in blog, 3:2 ratio
add_image_size( 'alchemist-blog', 960, 640, true );
// Used in FAQ Right Side, 3:2 ratio
add_image_size( 'alchemist-faq-right-image', 79, 53, true );
// This theme uses wp_nav_menu() in two locations.
register_nav_menus( array(
'menu-1' => esc_html__( 'Primary Menu', 'alchemist' ),
'social-primary' => esc_html__( 'Social on Primary', 'alchemist' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Enable support for Post Formats.
*
* See: https://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array(
'aside',
'image',
'video',
'quote',
'link',
'gallery',
'status',
'audio',
'chat',
) );
/*
* 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.css', alchemist_fonts_url() ) );
// Indicate widget sidebars can use selective refresh in the Customizer.
add_theme_support( 'customize-selective-refresh-widgets' );
// Add support for Block Styles.
add_theme_support( 'wp-block-styles' );
// Add support for editor styles.
add_theme_support( 'editor-styles' );
// Add support for full and wide align images.
add_theme_support( 'align-wide' );
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// Add custom editor font sizes.
add_theme_support(
'editor-font-sizes',
array(
array(
'name' => esc_html__( 'Small', 'alchemist' ),
'shortName' => esc_html__( 'S', 'alchemist' ),
'size' => 14,
'slug' => 'small',
),
array(
'name' => esc_html__( 'Normal', 'alchemist' ),
'shortName' => esc_html__( 'M', 'alchemist' ),
'size' => 18,
'slug' => 'normal',
),
array(
'name' => esc_html__( 'Large', 'alchemist' ),
'shortName' => esc_html__( 'L', 'alchemist' ),
'size' => 58,
'slug' => 'large',
),
array(
'name' => esc_html__( 'Huge', 'alchemist' ),
'shortName' => esc_html__( 'XL', 'alchemist' ),
'size' => 70,
'slug' => 'huge',
),
)
);
// Add support for custom color scheme.
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'White', 'alchemist' ),
'slug' => 'white',
'color' => '#ffffff',
),
array(
'name' => esc_html__( 'Black', 'alchemist' ),
'slug' => 'black',
'color' => '#000000',
),
array(
'name' => esc_html__( 'Gray', 'alchemist' ),
'slug' => 'gray',
'color' => '#999999',
),
array(
'name' => esc_html__( 'yellow', 'alchemist' ),
'slug' => 'yellow',
'color' => '#e1716b',
),
) );
/**
* Adds support for Catch Breadcrumb.
*/
add_theme_support( 'catch-breadcrumb', array(
'content_selector' => '.header-media .entry-title',
) );
}
endif; // alchemist_setup
add_action( 'after_setup_theme', 'alchemist_setup' );
/**
* Sets 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
*
* @since Alchemist 1.0
*/
function alchemist_content_width() {
$GLOBALS['content_width'] = apply_filters( 'alchemist_content_width', 990 );
}
add_action( 'after_setup_theme', 'alchemist_content_width', 0 );
/**
* Set the content width in pixels, based on the theme's design and stylesheet for different value other than the default one
*
* @global int $content_width
*/
function alchemist_template_redirect() {
$layout = alchemist_get_theme_layout();
if ( 'no-sidebar-full-width' == $layout ) {
$GLOBALS['content_width'] = 1510;
}
}
add_action( 'template_redirect', 'alchemist_template_redirect' );
/**
* Registers a widget area.
*
* @link https://developer.wordpress.org/reference/functions/register_sidebar/
*
* @since Alchemist 1.0
*/
function alchemist_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'alchemist' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'alchemist' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer 1', 'alchemist' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'alchemist' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer 2', 'alchemist' ),
'id' => 'sidebar-3',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'alchemist' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer 3', 'alchemist' ),
'id' => 'sidebar-4',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'alchemist' ),
'before_widget' => '',
'before_title' => '',
) );
//Instagram Widget
register_sidebar( array(
'name' => esc_html__( 'Instagram', 'alchemist' ),
'id' => 'sidebar-instagram',
'description' => esc_html__( 'Appears above footer. This sidebar is only for Instagram Feed Gallery', 'alchemist' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'alchemist_widgets_init' );
/**
* Count the number of footer sidebars to enable dynamic classes for the footer
*
* @since Alchemist 1.0
*/
function alchemist_footer_sidebar_class() {
$count = 0;
if ( is_active_sidebar( 'sidebar-2' ) ) {
$count++;
}
if ( is_active_sidebar( 'sidebar-3' ) ) {
$count++;
}
if ( is_active_sidebar( 'sidebar-4' ) ) {
$count++;
}
$class = '';
switch ( $count ) {
case '1':
$class = 'one';
break;
case '2':
$class = 'two';
break;
case '3':
$class = 'three';
break;
}
if ( $class )
echo 'class="widget-area footer-widget-area ' . $class . '"'; // WPCS: XSS OK.
}
if ( ! function_exists( 'alchemist_fonts_url' ) ) :
/**
* Register Google fonts for Alchemist Pro
*
* Create your own alchemist_fonts_url() function to override in a child theme.
*
* @since Alchemist 1.0
*
* @return string Google fonts URL for the theme.
*/
function alchemist_fonts_url() {
$fonts_url = '';
/* Translators: If there are characters in your language that are not
* supported by Poppins, translate this to 'off'. Do not translate
* into your own language.
*/
$poppins = _x( 'on', 'Poppins: on or off', 'alchemist' );
/* Translators: If there are characters in your language that are not
* supported by Playfair Display, translate this to 'off'. Do not translate
* into your own language.
*/
$playfair_display = _x( 'on', 'Playfair Display: on or off', 'alchemist' );
if ( 'off' !== $poppins || 'off' !== $playfair_display ) {
$font_families = array();
if ( 'off' !== $poppins ) {
$font_families[] = 'Poppins:300,400,500,600,700';
}
if ( 'off' !== $playfair_display ) {
$font_families[] = 'Playfair Display:300,400,500,600,700';
}
$query_args = array(
'family' => urlencode( implode( '|', $font_families ) ),
'subset' => urlencode( 'latin,latin-ext' ),
);
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
}
// Load google font locally.
require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' );
return esc_url_raw( wptt_get_webfont_url( $fonts_url ) );
}
endif;
/**
* Handles JavaScript detection.
*
* Adds a `js` class to the root `` element when JavaScript is detected.
*
* @since Alchemist 1.0
*/
function alchemist_javascript_detection() {
echo "\n";
}
add_action( 'wp_head', 'alchemist_javascript_detection', 0 );
/**
* Enqueues scripts and styles.
*
* @since Alchemist 1.0
*/
function alchemist_scripts() {
// Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'alchemist-fonts', alchemist_fonts_url(), array(), null );
// Theme stylesheet.
wp_enqueue_style( 'alchemist-style', get_stylesheet_uri(), null, date( 'Ymd-Gis', filemtime( get_template_directory() . '/style.css' ) ) );
// Theme block stylesheet.
wp_enqueue_style( 'alchemist-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'alchemist-style' ), '1.0' );
// Load the html5 shiv.
wp_enqueue_script( 'alchemist-html5', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/html5.min.js', array(), '3.7.3' );
wp_script_add_data( 'alchemist-html5', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'alchemist-skip-link-focus-fix', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/skip-link-focus-fix.min.js', array(), '20160816', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
if ( is_singular() && wp_attachment_is_image() ) {
wp_enqueue_script( 'alchemist-keyboard-image-navigation', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/keyboard-image-navigation.min.js', array( 'jquery' ), '20160816' );
}
wp_register_script( 'jquery-match-height', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/jquery.matchHeight.min.js', array( 'jquery' ), '20151215', true );
$deps[] = 'jquery';
$deps[] = 'jquery-match-height';
wp_enqueue_script( 'alchemist-script', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/functions.min.js', $deps, '20160816', true );
wp_localize_script( 'alchemist-script', 'alchemistScreenReaderText', array(
'expand' => esc_html__( 'expand child menu', 'alchemist' ),
'collapse' => esc_html__( 'collapse child menu', 'alchemist' ),
'icon' => alchemist_get_svg( array(
'icon' => 'angle-down',
'fallback' => true,
) ),
) );
//Slider Scripts
$enable_slider = get_theme_mod( 'alchemist_slider_option', 'disabled' );
$enable_testimonial = get_theme_mod( 'alchemist_testimonial_option', 'disabled' );
if ( alchemist_check_section( $enable_slider ) || alchemist_check_section( $enable_testimonial ) ) {
wp_enqueue_script( 'jquery-cycle2', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/jquery.cycle/jquery.cycle2.min.js', array( 'jquery' ), '2.1.5', true );
}
// Enqueue fitvid if JetPack is not installed.
if ( ! class_exists( 'Jetpack' ) ) {
wp_enqueue_script( 'jquery-fitvids', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/js/fitvids.min.js', array( 'jquery' ), '1.1', true );
}
}
add_action( 'wp_enqueue_scripts', 'alchemist_scripts' );
/**
* Enqueue editor styles for Gutenberg
*
* @since Alchemist 1.0
*/
function alchemist_block_editor_styles() {
// Block styles.
wp_enqueue_style( 'alchemist-block-editor-style', trailingslashit( esc_url ( get_template_directory_uri() ) ) . 'assets/css/editor-blocks.css' );
// Add custom fonts.
wp_enqueue_style( 'alchemist-fonts', alchemist_fonts_url(), array(), null );
}
add_action( 'enqueue_block_editor_assets', 'alchemist_block_editor_styles' );
/**
* Custom template tags for this theme.
*/
require get_parent_theme_file_path( 'inc/template-tags.php' );
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer/customizer.php';
/**
* Include Header Background Color Options
*/
require get_parent_theme_file_path( 'inc/color-scheme.php' );
/**
* SVG icons functions and filters.
*/
require get_parent_theme_file_path( 'inc/icon-functions.php' );
/**
* Custom functions that act independently of the theme templates.
*/
require get_parent_theme_file_path( 'inc/extras.php' );
/**
* Add functions for service.
*/
require get_parent_theme_file_path( 'inc/service.php' );
/**
* Add functions for header media.
*/
require get_parent_theme_file_path( 'inc/custom-header.php' );
/**
* Load Jetpack compatibility file.
*/
require get_parent_theme_file_path( 'inc/jetpack.php' );
/**
* Include Slider
*/
require get_parent_theme_file_path( '/inc/slider.php' );
/**
* Include Widgets
*/
require get_parent_theme_file_path( '/inc/widgets/social-icons.php' );
/**
* Load Theme About page
*/
require get_parent_theme_file_path( '/inc/about.php' );
/**
* Load TGMPA
*/
require get_template_directory() . '/inc/class-tgm-plugin-activation.php';
/**
* Register the required plugins for this theme.
*
* In this example, we register five plugins:
* - one included with the TGMPA library
* - two from an external source, one from an arbitrary source, one from a GitHub repository
* - two from the .org repo, where one demonstrates the use of the `is_callable` argument
*
* The variables passed to the `tgmpa()` function should be:
* - an array of plugin arrays;
* - optionally a configuration array.
* If you are not changing anything in the configuration array, you can remove the array and remove the
* variable from the function call: `tgmpa( $plugins );`.
* In that case, the TGMPA default settings will be used.
*
* This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10.
*/
function alchemist_register_required_plugins() {
/*
* Array of plugin arrays. Required keys are name and slug.
* If the source is NOT from the .org repo, then source is also required.
*/
$plugins = array(
// Catch Web Tools.
array(
'name' => 'Catch Web Tools', // Plugin Name, translation not required.
'slug' => 'catch-web-tools',
),
// Catch IDs
array(
'name' => 'Catch IDs', // Plugin Name, translation not required.
'slug' => 'catch-ids',
),
// To Top.
array(
'name' => 'To top', // Plugin Name, translation not required.
'slug' => 'to-top',
),
// Catch Gallery.
array(
'name' => 'Catch Gallery', // Plugin Name, translation not required.
'slug' => 'catch-gallery',
),
);
if ( ! class_exists( 'Catch_Infinite_Scroll_Pro' ) ) {
$plugins[] = array(
'name' => 'Catch Infinite Scroll', // Plugin Name, translation not required.
'slug' => 'catch-infinite-scroll',
);
}
if ( ! class_exists( 'Essential_Content_Types_Pro' ) ) {
$plugins[] = array(
'name' => 'Essential Content Types', // Plugin Name, translation not required.
'slug' => 'essential-content-types',
);
}
if ( ! class_exists( 'Essential_Widgets_Pro' ) ) {
$plugins[] = array(
'name' => 'Essential Widgets', // Plugin Name, translation not required.
'slug' => 'essential-widgets',
);
}
/*
* Array of configuration settings. Amend each line as needed.
*
* TGMPA will start providing localized text strings soon. If you already have translations of our standard
* strings available, please help us make TGMPA even better by giving us access to these translations or by
* sending in a pull-request with .po file(s) with the translations.
*
* Only uncomment the strings in the config array if you want to customize the strings.
*/
$config = array(
'id' => 'alchemist', // Unique ID for hashing notices for multiple instances of TGMPA.
'default_path' => '', // Default absolute path to bundled plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
);
tgmpa( $plugins, $config );
}
add_action( 'tgmpa_register', 'alchemist_register_required_plugins' );
/**
* Checks if there are options already present from free version and adds it to the Pro theme options
*
* @since Alchemist 1.0
* @hook after_theme_switch
*/
function alchemist_setup_options( $old_theme_name ) {
if ( $old_theme_name ) {
$old_theme_slug = sanitize_title( $old_theme_name );
$free_version_slug = array(
'alchemist',
);
$pro_version_slug = 'alchemist';
$free_options = get_option( 'theme_mods_' . $old_theme_slug );
// Perform action only if theme_mods_alchemist free version exists.
if ( in_array( $old_theme_slug, $free_version_slug ) && $free_options && '1' !== get_theme_mod( 'free_pro_migration' ) ) {
$new_options = wp_parse_args( get_theme_mods(), $free_options );
if ( update_option( 'theme_mods_' . $pro_version_slug, $free_options ) ) {
// Set Migration Parameter to true so that this script does not run multiple times.
set_theme_mod( 'free_pro_migration', '1' );
}
}
}
}
add_action( 'after_switch_theme', 'alchemist_setup_options' );