themes-wordpress/exmoor/functions.php
Takashi Irie 7202161405
Exmoor: Add theme (#7129)
* Exmoor: Add theme

* remove theme attribute from templates

* update versions

* fix patterns

---------

Co-authored-by: madhusudhand <madhusudhan.dollu@gmail.com>
2023-07-01 01:18:29 +07:00

60 lines
1 KiB
PHP

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