123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <?php
- /**
- * components functions and definitions.
- *
- * @link https://developer.wordpress.org/themes/basics/theme-functions/
- *
- * @package Karuna
- */
- if ( ! function_exists( 'karuna_setup' ) ) :
- /**
- * Sets up theme defaults and registers support for various WordPress features.
- *
- * Note that this function is hooked into the aftercomponentsetup_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 karuna_setup() {
- /*
- * Make theme available for translation.
- * Translations can be filed in the /languages/ directory.
- * If you're building a theme based on components, use a find and replace
- * to change 'karuna' to the name of your theme in all the template files.
- */
- load_theme_textdomain( 'karuna', 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' );
- // Add support for 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', 'karuna' ),
- 'slug' => 'black',
- 'color' => '#333333',
- ),
- array(
- 'name' => esc_html__( 'Medium Gray', 'karuna' ),
- 'slug' => 'medium-gray',
- 'color' => '#999999',
- ),
- array(
- 'name' => esc_html__( 'Light Gray', 'karuna' ),
- 'slug' => 'light-gray',
- 'color' => '#dddddd',
- ),
- array(
- 'name' => esc_html__( 'White', 'karuna' ),
- 'slug' => 'white',
- 'color' => '#ffffff',
- ),
- array(
- 'name' => esc_html__( 'Purple', 'karuna' ),
- 'slug' => 'purple',
- 'color' => '#6636cc',
- ),
- array(
- 'name' => esc_html__( 'Dark Purple', 'karuna' ),
- 'slug' => 'dark-purple',
- 'color' => '#471e9e',
- ),
- array(
- 'name' => esc_html__( 'Green', 'karuna' ),
- 'slug' => 'green',
- 'color' => '#85cc36',
- ),
- array(
- 'name' => esc_html__( 'Dark Green', 'karuna' ),
- 'slug' => 'dark-green',
- 'color' => '#609d1b',
- ),
- )
- );
- /*
- * 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' );
- add_image_size( 'karuna-featured-image', 685, 9999 );
- add_image_size( 'karuna-hero', 2000, 9999 );
- add_image_size( 'karuna-grid', 342, 228, true );
- add_image_size( 'karuna-thumbnail-avatar', 100, 100, true );
- // This theme uses wp_nav_menu() in one location.
- register_nav_menus( array(
- 'menu-1' => esc_html__( 'Header', 'karuna' ),
- ) );
- /*
- * 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',
- ) );
- // Add theme support for custom logos
- add_theme_support( 'custom-logo',
- array(
- 'width' => 1000,
- 'height' => 200,
- 'flex-width' => true,
- 'flex-height' => true,
- )
- );
- // Set up the WordPress core custom background feature.
- add_theme_support( 'custom-background', apply_filters( 'karuna_custom_background_args', array(
- 'default-color' => 'ffffff',
- ) ) );
- }
- endif;
- add_action( 'after_setup_theme', 'karuna_setup' );
- /**
- * Return early if Custom Logos are not available.
- */
- function karuna_the_custom_logo() {
- if ( ! function_exists( 'the_custom_logo' ) ) {
- return;
- } else {
- the_custom_logo();
- }
- }
- /**
- * 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 karuna_content_width() {
- $GLOBALS['content_width'] = apply_filters( 'karuna_content_width', 685 );
- }
- add_action( 'after_setup_theme', 'karuna_content_width', 0 );
- /*
- * Adjust $content_width for full-width and front-page.php templates
- */
- if ( ! function_exists( 'karuna_adjusted_content_width' ) ) :
- function karuna_adjusted_content_width() {
- global $content_width;
- if ( is_page_template( 'templates/full-width-page.php' ) || is_page_template( 'front-page.php' ) || is_active_sidebar( 'sidebar-5' ) || is_active_sidebar( 'sidebar-4' ) ) {
- $content_width = 1040; //pixels
- }
- }
- add_action( 'template_redirect', 'karuna_adjusted_content_width' );
- endif; // if ! function_exists( 'karuna_adjusted_content_width' )
- /**
- * Register widget area.
- *
- * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
- */
- function karuna_widgets_init() {
- register_sidebar( array(
- 'name' => esc_html__( 'Sidebar', 'karuna' ),
- 'id' => 'sidebar-1',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Full-Width Header', 'karuna' ),
- 'id' => 'sidebar-4',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Full-Width Footer', 'karuna' ),
- 'id' => 'sidebar-5',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Footer 1', 'karuna' ),
- 'id' => 'sidebar-2',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Footer 2', 'karuna' ),
- 'id' => 'sidebar-3',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Footer 3', 'karuna' ),
- 'id' => 'sidebar-6',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- register_sidebar( array(
- 'name' => esc_html__( 'Footer 4', 'karuna' ),
- 'id' => 'sidebar-7',
- 'description' => '',
- 'before_widget' => '<section id="%1$s" class="widget %2$s">',
- 'after_widget' => '</section>',
- 'before_title' => '<h2 class="widget-title">',
- 'after_title' => '</h2>',
- ) );
- }
- add_action( 'widgets_init', 'karuna_widgets_init' );
- /**
- * Register Google Fonts
- */
- function karuna_fonts_url() {
- $fonts_url = '';
- /* Translators: If there are characters in your language that are not
- * supported by Karla, translate this to 'off'. Do not translate
- * into your own language.
- */
- $karla = esc_html_x( 'on', 'Karla font: on or off', 'karuna' );
- if ( 'off' !== $karla ) {
- $font_families = array();
- $font_families[] = 'Karla:400,400italic,700,700italic';
- $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' );
- }
- return $fonts_url;
- }
- /**
- * Enqueue scripts and styles.
- */
- function karuna_scripts() {
- wp_enqueue_style( 'karuna-style', get_stylesheet_uri() );
- // Gutenberg styles
- wp_enqueue_style( 'karuna-blocks', get_template_directory_uri() . '/blocks.css' );
- wp_enqueue_style( 'karuna-fonts', karuna_fonts_url(), array(), null );
- wp_enqueue_style( 'genericons', get_template_directory_uri() . '/assets/fonts/genericons/genericons.css', array(), '3.4.1' );
- wp_enqueue_script( 'karuna-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), '20151215', true );
- wp_enqueue_script( 'karuna-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20151215', true );
- wp_enqueue_script( 'karuna-functions', get_template_directory_uri() . '/assets/js/functions.js', array( 'jquery' ), '20160531', true );
- if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
- wp_enqueue_script( 'comment-reply' );
- }
- }
- add_action( 'wp_enqueue_scripts', 'karuna_scripts' );
- /**
- * Gutenberg Editor Styles
- */
- function karuna_editor_styles() {
- wp_enqueue_style( 'karuna-editor-block-style', get_template_directory_uri() . '/editor-blocks.css' );
- wp_enqueue_style( 'karuna-fonts', karuna_fonts_url(), array(), null );
- }
- add_action( 'enqueue_block_editor_assets', 'karuna_editor_styles' );
- /**
- * Replaces "[...]" (appended to automatically generated excerpts) with ... and a 'Continue reading' link.
- * @return string 'Continue reading' link prepended with an ellipsis.
- */
- if ( ! function_exists( 'karuna_excerpt_more' ) ) :
- function karuna_excerpt_more( $more ) {
- $link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
- esc_url( get_permalink( get_the_ID() ) ),
- /* translators: %s: Name of current post */
- sprintf( esc_html__( 'Continue reading %s', 'karuna' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
- );
- return ' … ' . $link;
- }
- add_filter( 'excerpt_more', 'karuna_excerpt_more' );
- endif;
- /**
- * Custom header support
- */
- 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';
- /**
- * Load WooCommerce compatibility file.
- */
- if ( class_exists( 'WooCommerce' ) ) {
- require get_template_directory() . '/inc/woocommerce.php';
- }
|