57aa234894
* Initiial commit. * Replace screenshot. * Update assets, fonts, and implement bg a bit. * Updates to get bg working. * Clean up how background is handled. * Add initial style variations. * Spacing adjustments and refinements. * Template refinements. * Add search and archive, additional background handling. * Comments section tweaking. * Bump dev version. * Background tweaks and return to original color palette. * WIP style variations. * Dev version bump. * Staging site changes. * Cleanup and use transparent bg only. * Archive tweaks. * Version bump. * Remove 404 header. * Spacing and background adjustments. * Version bump. * Nav tweaks.' * Rename to reverie. * Cleanup and revisions. * Update description. * Remove unused fonts. * Remove unused images. * Reduce size of image. * Remove unneeded table styles. * V1.0.0.
60 lines
1 KiB
PHP
60 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Reverie functions and definitions
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package Reverie
|
|
* @since Reverie 1.0
|
|
*/
|
|
|
|
|
|
if ( ! function_exists( 'reverie_support' ) ) :
|
|
|
|
/**
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
*
|
|
* @since Reverie 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function reverie_support() {
|
|
|
|
// Enqueue editor styles.
|
|
add_editor_style( 'style.css' );
|
|
|
|
// Make theme available for translation.
|
|
load_theme_textdomain( 'reverie' );
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'after_setup_theme', 'reverie_support' );
|
|
|
|
if ( ! function_exists( 'reverie_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue styles.
|
|
*
|
|
* @since Reverie 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function reverie_styles() {
|
|
|
|
// Register theme stylesheet.
|
|
wp_register_style(
|
|
'reverie-style',
|
|
get_stylesheet_directory_uri() . '/style.css',
|
|
array(),
|
|
wp_get_theme()->get( 'Version' )
|
|
);
|
|
|
|
// Enqueue theme stylesheet.
|
|
wp_enqueue_style( 'reverie-style' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'reverie_styles' );
|