themes-wordpress/trellick/functions.php
2023-12-20 14:42:52 -05:00

60 lines
1.1 KiB
PHP

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