themes-wordpress/poesis/functions.php
Matias Benedetto 0e13958390
Poesis: add theme for review (#7011)
* Poeisis: add theme for review

* move cover template part to pattern

* update theme min versions

* add 404 page

* add license information and compress images

* scale down assets

---------

Co-authored-by: madhusudhand <madhusudhan.dollu@gmail.com>
2023-07-07 18:39:49 +05:30

60 lines
1 KiB
PHP

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