themes-wordpress/disco/functions.php
arthur791004 721d8e8e04
Make theme available for translation as much as possible (#6484)
* Add the load_theme_textdomain function call

* Fix incorrect domain

* Load blockbase translations

* Moved all calls to load_theme_textdomain to be handled by Blockbase (not the children)

* Refactored calls to load_theme_textdomain to not include the default location to simplify the call

* Added load_theme_textdomain call to block canvas

* Removed unrelated videomaker changes

Co-authored-by: Jason Crist <jcrist@pbking.com>
2022-10-28 11:43:41 -04:00

60 lines
1 KiB
PHP

<?php
/**
* Disco functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Disco
* @since Disco 1.0
*/
if ( ! function_exists( 'disco_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since Disco 1.0
*
* @return void
*/
function disco_support() {
// Make theme available for translation.
load_theme_textdomain( 'disco' );
// Enqueue editor styles.
add_editor_style( 'style.css' );
}
endif;
add_action( 'after_setup_theme', 'disco_support' );
if ( ! function_exists( 'disco_styles' ) ) :
/**
* Enqueue styles.
*
* @since Disco 1.0
*
* @return void
*/
function disco_styles() {
// Register theme stylesheet.
wp_register_style(
'disco-style',
get_template_directory_uri() . '/style.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'disco-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'disco_styles' );