themes-wordpress/overlaid/functions.php
Sarah Norris 014e045fb7
Overlaid: Add theme (#7259)
* Initial commit

* Tidy up theme.json

* Update meta info

* Use 404 pattern on 404 page

* Remove theme attributes

* Align pattern whitespace

* Move alt home page to pattern

* Move home content to pattern

* Convert all images to webp

* Remove unused fonts

* Add font license info

* Remove unused template part

* Move footer content to pattern

* Add image credits

* Remove category id
2023-08-04 12:53:20 +01:00

60 lines
1.1 KiB
PHP

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