themes-wordpress/upsidedown/functions.php
Sarah Norris 0b1091633d
Add Upsidedown theme (#6735)
* Upsidedown initial commit

* Update readme.txt and style.css

* Update theme.json schema ref

* Move 404 content into pattern

* Translate search block text

* Move footer content into pattern

* Remove tertiary colour

* Update schema link on noir variation

* Remove foreground and background colours

* Move header content to pattern

* Update variables in json files

* Remove duplicate json properties

* Remove ref from nav

* Add missing space

* Indent template markup

* Move single markup to pattern

* Remove unused fonts

* Remove small font size from post date

* Fix button hover colours

* Update upsidedown/templates/index.html

Co-authored-by: Jeff Ong <jonger4@gmail.com>

* Update upsidedown/templates/archive.html

Co-authored-by: Jeff Ong <jonger4@gmail.com>

Co-authored-by: Jeff Ong <jonger4@gmail.com>
2022-12-07 15:38:29 +00:00

60 lines
1.1 KiB
PHP

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