626a8b2bf3
* Initial commit * Bump version; remove table styles * Add credits for base theme * Remove unnecessary theme.json properties * Tidy up serif-blue json file * Add font credits * Remove theme, ref and id attributes * Move footer to pattern * Tidy up misc formatting * Move 404 content to pattern * Make no results content translatable * Small tweaks before release * Add CSS for mobile nav spacing * Convert images to webp * Add image credits * Remove queryIds * Update Requires at least version
60 lines
1 KiB
PHP
60 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Lativ functions and definitions
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package Lativ
|
|
* @since Lativ 1.0
|
|
*/
|
|
|
|
|
|
if ( ! function_exists( 'lativ_support' ) ) :
|
|
|
|
/**
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
*
|
|
* @since Lativ 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function lativ_support() {
|
|
|
|
// Enqueue editor styles.
|
|
add_editor_style( 'style.css' );
|
|
|
|
// Make theme available for translation.
|
|
load_theme_textdomain( 'lativ' );
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'after_setup_theme', 'lativ_support' );
|
|
|
|
if ( ! function_exists( 'lativ_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue styles.
|
|
*
|
|
* @since Lativ 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function lativ_styles() {
|
|
|
|
// Register theme stylesheet.
|
|
wp_register_style(
|
|
'lativ-style',
|
|
get_stylesheet_directory_uri() . '/style.css',
|
|
array(),
|
|
wp_get_theme()->get( 'Version' )
|
|
);
|
|
|
|
// Enqueue theme stylesheet.
|
|
wp_enqueue_style( 'lativ-style' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'lativ_styles' );
|