themes-wordpress/cookbook/functions.php
alaczek 139188ead9
Cookbook: Add theme (#7687)
* Cookbook: Add theme

Add Cookbook theme.

* Comitting provided changes to cookbook

* Ran theme through CBT: cleaned up a few templates, stripped nav references

* Update footer.php

Remove an extra character.

* Update header and footer patterns

Update the text color in the header;
Wrap text in translation function.

* Update home.php

Wrap text in translation function.

---------

Co-authored-by: Jason Crist <jcrist@pbking.com>
2024-06-18 12:57:27 +02:00

60 lines
1.1 KiB
PHP

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