8894ae0c6b
Initial commit.
61 lines
1.1 KiB
PHP
61 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Craftfully functions and definitions
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package Craftfully
|
|
* @since Craftfully 1.0
|
|
*/
|
|
|
|
declare( strict_types = 1 );
|
|
|
|
if ( ! function_exists( 'creatio2_support' ) ) :
|
|
|
|
/**
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
*
|
|
* @since Craftfully 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function creatio2_support() {
|
|
|
|
// Enqueue editor styles.
|
|
add_editor_style( 'style.css' );
|
|
|
|
// Make theme available for translation.
|
|
load_theme_textdomain( 'creatio2' );
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'after_setup_theme', 'creatio2_support' );
|
|
|
|
if ( ! function_exists( 'creatio2_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue styles.
|
|
*
|
|
* @since Craftfully 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function creatio2_styles() {
|
|
|
|
// Register theme stylesheet.
|
|
wp_register_style(
|
|
'creatio2-style',
|
|
get_stylesheet_directory_uri() . '/style.css',
|
|
array(),
|
|
wp_get_theme()->get( 'Version' )
|
|
);
|
|
|
|
// Enqueue theme stylesheet.
|
|
wp_enqueue_style( 'creatio2-style' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'creatio2_styles' );
|