themes-wordpress/pieria/functions.php
Vicente Canales 33a5881dd9
Pieria: add theme (#7202)
* Add pieria theme

A theme created by @henriqueiamarino

* Make only the sidebar a pattern

* Remove theme attribute

* Update pieria/readme.txt

Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>

* Update pieria/style.css

Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>

* Update pieria/style.css

Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>

* Update pieria/style.css

Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>

* Translate 404 template, move to pattern

* Remove unused styles

* Make sidebar credit text translatable

* Replace separator paragraph with separator block

* Remove unused fonts

* Add asset licenses to readme file

* Add missing closing p tag

* Convert embedded image to webp

* Move translators comment according to style rules

* fix separator

---------

Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>
2023-07-07 15:38:21 -04:00

60 lines
1 KiB
PHP

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