/home/coolpkct/www/websites/hera.cool.rocks/wp-content/themes/wisteria/functions.php
<?php
/**
* Wisteria functions and definitions
*
* @package Wisteria
*/
if ( ! function_exists( 'wisteria_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function wisteria_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Wisteria, use a find and replace
* to change 'wisteria' to the name of your theme in all the template files
*/
load_theme_textdomain( 'wisteria', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for custom logo.
*/
add_theme_support( 'custom-logo', array(
'width' => 560,
'height' => 140,
'flex-height' => 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' );
// Theme Image Sizes
add_image_size( 'wisteria-featured', 334, 250, true );
// This theme uses wp_nav_menu() in four locations.
register_nav_menus( array (
'primary' => esc_html__( 'Primary Menu', 'wisteria' ),
) );
// This theme styles the visual editor to resemble the theme style.
add_editor_style( array ( 'css/editor-style.css', wisteria_fonts_url() ) );
/*
* 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 http://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array (
'aside', 'audio', 'gallery', 'image', 'link', 'quote', 'video',
) );
// Setup the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'arcane_custom_background_args', array (
'default-color' => 'f8f8f8',
'default-image' => '',
) ) );
}
endif; // wisteria_setup
add_action( 'after_setup_theme', 'wisteria_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 wisteria_content_width() {
$GLOBALS['content_width'] = apply_filters( 'wisteria_content_width', 668 );
}
add_action( 'after_setup_theme', 'wisteria_content_width', 0 );
/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function wisteria_widgets_init() {
// Widget Areas
register_sidebar( array(
'name' => esc_html__( 'Main Sidebar', 'wisteria' ),
'id' => 'sidebar-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'wisteria_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function wisteria_scripts() {
/**
* Enqueue JS files
*/
// Enquire
wp_enqueue_script( 'enquire', get_template_directory_uri() . '/js/enquire.js', array( 'jquery' ), '2.1.2', true );
// Superfish Menu
wp_enqueue_script( 'hover-intent', get_template_directory_uri() . '/js/hover-intent.js', array( 'jquery' ), 'r7', true );
wp_enqueue_script( 'superfish', get_template_directory_uri() . '/js/superfish.js', array( 'jquery' ), '1.7.5', true );
// Comment Reply
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
// Keyboard image navigation support
if ( is_singular() && wp_attachment_is_image() ) {
wp_enqueue_script( 'wisteria-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20140127', true );
}
// Custom Script
wp_enqueue_script( 'wisteria-custom', get_template_directory_uri() . '/js/custom.js', array( 'jquery' ), '1.0', true );
/**
* Enqueue CSS files
*/
// Bootstrap
wp_enqueue_style( 'wisteria-bootstrap', get_template_directory_uri() . '/css/bootstrap.css' );
// Fontawesome
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css' );
// Google Fonts
wp_enqueue_style( 'wisteria-fonts', wisteria_fonts_url(), array(), null );
// Theme Stylesheet
wp_enqueue_style( 'wisteria-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'wisteria_scripts' );
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';