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.
*/
add_theme_support( 'post-thumbnails' );
/*
* 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',
) );
// Add support for Block Styles.
add_theme_support( 'wp-block-styles' );
add_theme_support( 'editor-styles' );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, and column width.
*/
add_editor_style( array( 'assets/css/editor-style.css',
get_template_directory_uri() . '/assets/css/font-awesome.css',
artgallery_fonts_url()
) );
/*
* Set Custom Background
*/
add_theme_support( 'custom-background', array ('default-color' => '#ffffff') );
// Set the default content width.
$GLOBALS['content_width'] = 900;
// This theme uses wp_nav_menu() in header menu
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'artgallery' ),
'footer' => __( 'Footer Menu', 'artgallery' ),
) );
$defaults = array(
'flex-height' => false,
'flex-width' => false,
'header-text' => array( 'site-title', 'site-description' ),
);
add_theme_support( 'custom-logo', $defaults );
}
endif; // artgallery_setup
add_action( 'after_setup_theme', 'artgallery_setup' );
if ( ! function_exists( 'artgallery_fonts_url' ) ) :
/**
* Load google font url used in the ArtGallery theme
*/
function artgallery_fonts_url() {
$fonts_url = '';
/* Translators: If there are characters in your language that are not
* supported by Questrial, translate this to 'off'. Do not translate
* into your own language.
*/
$questrial = _x( 'on', 'Questrial font: on or off', 'artgallery' );
if ( 'off' !== $questrial ) {
$font_families = array();
$font_families[] = 'Overlock';
$query_args = array(
'family' => urlencode( implode( '|', $font_families ) ),
);
$fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
}
return $fonts_url;
}
endif; // artgallery_fonts_url
if ( ! function_exists( 'artgallery_load_scripts' ) ) :
/**
* the main function to load scripts in the ArtGallery theme
* if you add a new load of script, style, etc. you can use that function
* instead of adding a new wp_enqueue_scripts action for it.
*/
function artgallery_load_scripts() {
// load main stylesheet.
wp_enqueue_style( 'font-awesome',
get_template_directory_uri() . '/assets/css/font-awesome.css', array( ) );
wp_enqueue_style( 'animate-css',
get_template_directory_uri() . '/assets/css/animate.css', array( ) );
wp_enqueue_style( 'artgallery-style', get_stylesheet_uri(), array() );
wp_enqueue_style( 'artgallery-fonts', artgallery_fonts_url(), array(), null );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'viewportchecker',
get_template_directory_uri() . '/assets/js/viewportchecker.js',
array( 'jquery' ) );
// Load Utilities JS Script
wp_enqueue_script( 'artgallery-utilities',
get_template_directory_uri() . '/assets/js/utilities.js',
array( 'jquery', 'viewportchecker' ) );
$data = array(
'loading_effect' => ( get_theme_mod('artgallery_animations_display', 1) == 1 ),
);
wp_localize_script('artgallery-utilities', 'artgallery_options', $data);
wp_enqueue_script( 'jquery.easing', get_template_directory_uri() . '/assets/js/jquery.easing.js', array( 'jquery' ) );
wp_enqueue_script( 'camera', get_template_directory_uri() . '/assets/js/camera.js', array( 'jquery' ) );
}
endif; // artgallery_load_scripts
add_action( 'wp_enqueue_scripts', 'artgallery_load_scripts' );
if ( ! function_exists( 'artgallery_widgets_init' ) ) :
/**
* widgets-init action handler. Used to register widgets and register widget areas
*/
function artgallery_widgets_init() {
// Register Sidebar Widget.
register_sidebar( array (
'name' => __( 'Sidebar Widget Area', 'artgallery'),
'id' => 'sidebar-widget-area',
'description' => __( 'The sidebar widget area', 'artgallery'),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #1
register_sidebar( array (
'name' => __( 'Footer Column #1', 'artgallery' ),
'id' => 'footer-column-1-widget-area',
'description' => __( 'The Footer Column #1 widget area', 'artgallery' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #2
register_sidebar( array (
'name' => __( 'Footer Column #2', 'artgallery' ),
'id' => 'footer-column-2-widget-area',
'description' => __( 'The Footer Column #2 widget area', 'artgallery' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #3
register_sidebar( array (
'name' => __( 'Footer Column #3', 'artgallery' ),
'id' => 'footer-column-3-widget-area',
'description' => __( 'The Footer Column #3 widget area', 'artgallery' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
}
endif; // artgallery_widgets_init
add_action( 'widgets_init', 'artgallery_widgets_init' );
if ( ! function_exists( 'artgallery_show_copyright_text' ) ) :
/**
* Displays the copyright text.
*/
function artgallery_show_copyright_text() {
$footerText = get_theme_mod('artgallery_footer_copyright', null);
if ( !empty( $footerText ) ) {
echo esc_html( $footerText ) . ' | ';
}
}
endif; // artgallery_show_copyright_text
if ( ! function_exists( 'artgallery_display_slider' ) ) :
/**
* Displays the slider
*/
function artgallery_display_slider() {
?>