
* Cortado: add theme * Add font license information * Update author in readme * Update to newer export Previously, this theme was 'manually' put together. @henriqueiamarino has updated it to be an export via CBT, as well as added image licenses. Co-Authored-By: Henrique Iamarino <henrique.iamarino@automattic.com> * Move template parts out of patterns where possible * Add license details and fix formatting * Translate some key phrases --------- Co-authored-by: Henrique Iamarino <henrique.iamarino@automattic.com>
60 lines
1 KiB
PHP
60 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Cortado functions and definitions
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package Cortado
|
|
* @since Cortado 1.0
|
|
*/
|
|
|
|
|
|
if ( ! function_exists( 'cortado_support' ) ) :
|
|
|
|
/**
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
*
|
|
* @since Cortado 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function cortado_support() {
|
|
|
|
// Enqueue editor styles.
|
|
add_editor_style( 'style.css' );
|
|
|
|
// Make theme available for translation.
|
|
load_theme_textdomain( 'cortado' );
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'after_setup_theme', 'cortado_support' );
|
|
|
|
if ( ! function_exists( 'cortado_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue styles.
|
|
*
|
|
* @since Cortado 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function cortado_styles() {
|
|
|
|
// Register theme stylesheet.
|
|
wp_register_style(
|
|
'cortado-style',
|
|
get_stylesheet_directory_uri() . '/style.css',
|
|
array(),
|
|
wp_get_theme()->get( 'Version' )
|
|
);
|
|
|
|
// Enqueue theme stylesheet.
|
|
wp_enqueue_style( 'cortado-style' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'cortado_styles' );
|