themes-wordpress/optimismo/functions.php
Matias Benedetto 3d5aec06a3
Optimismo: add theme for review (#7018)
Co-authored-by: Takashi Irie <takashi@automattic.com>
Co-authored-by: Jason Crist <jcrist@pbking.com>
2023-06-26 18:17:18 -04:00

60 lines
1.1 KiB
PHP

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