File: /home/mmickelson/dragonexpert.com/wp-content/themes/coni/functions.php
<?php
/**
* Coni functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Coni
*/
if ( ! function_exists( 'coni_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 coni_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Coni, use a find and replace
* to change 'coni' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'coni', 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 Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
if ( function_exists( 'add_image_size' ) ) {
//Blog
add_image_size( 'coni_post', 953, 536, true );
add_image_size( 'coni_blog-section', 457, 259, true );
add_image_size( 'coni_post_square', 457, 457, true );
//Portfolio
add_image_size( 'coni_portfolio_square', 953, 953, true );
add_image_size( 'coni_portfolio_landscape', 953, 476, true );
}
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'coni' ),
'front-page' => esc_html__( 'Front Page Menu', 'coni' ),
'social' => esc_html__( 'Social Menu', 'coni' ),
) );
/*
* 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',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'coni_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// Styles for TinyMCE
$font_url = str_replace( ',', '%2C', '//fonts.googleapis.com/css?family=Lato:300,400,700' );
add_editor_style( array( 'css/editor-style.css', 'css/bootstrap.css', $font_url ) );
}
endif; // coni_setup
add_action( 'after_setup_theme', 'coni_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 coni_content_width() {
$GLOBALS['content_width'] = apply_filters( 'coni_content_width', 953 );
}
add_action( 'after_setup_theme', 'coni_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function coni_widgets_init() {
require get_template_directory() . '/inc/widget-areas/widget-areas.php';
}
add_action( 'widgets_init', 'coni_widgets_init' );
/**
* Register widgets.
*
* @link https://codex.wordpress.org/Widgets_API
*/
function coni_widgets_register() {
require get_template_directory() . '/inc/widgets/service.php';
require get_template_directory() . '/inc/widgets/client.php';
require get_template_directory() . '/inc/widgets/pricing.php';
}
add_action( 'widgets_init', 'coni_widgets_register' );
/**
* Enqueue scripts and styles.
*/
function coni_scripts() {
/**
* Enqueue Stylesheets
*/
require get_template_directory() . '/inc/scripts/stylesheets.php';
/**
* Enqueue Scripts
*/
require get_template_directory() . '/inc/scripts/scripts.php';
}
add_action( 'wp_enqueue_scripts', 'coni_scripts' );
/**
* Custom CSS generated by the Theme.
*/
require get_template_directory() . '/inc/scripts/styles.php';
/**
* Admin Styles
*
* Enqueue styles to the Admin Panel.
*/
function coni_wp_admin_style() {
wp_register_style( 'coni_custom_wp_admin_css', get_template_directory_uri() . '/css/admin-styles.css', false, '1.0.0' );
wp_enqueue_style( 'coni_custom_wp_admin_css' );
}
add_action( 'admin_enqueue_scripts', 'coni_wp_admin_style' );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Extras
*
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer
*
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Jetpack
*
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
/**
* Theme Functions
*
* Add Theme Functions
*/
// Bootstrap Walker
require get_template_directory() . '/inc/theme-functions/wp_bootstrap_navwalker.php';
// Custom Header
require get_template_directory() . '/inc/theme-functions/custom-header.php';
// TGM Plugin Activation
require get_template_directory() . '/inc/theme-functions/ql_tgm_plugin_activation.php';