themes-wordpress/disco/functions.php
Matias Benedetto ad5a4cd0ed
Disco: implemeting changes requested by dotorg review (#6422)
* Disco: tested up to major version

* Disco: rename functions coming from block canvas

* Disco: adding image links and license
2022-08-19 12:47:49 -03:00

58 lines
965 B
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() {
// 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' );