2022-03-17 10:18:33 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Block Canvas functions and definitions
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
|
|
*
|
|
|
|
* @package Block Canvas
|
|
|
|
* @since Block Canvas 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
if ( ! function_exists( 'block_canvas_support' ) ) :
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
|
|
*
|
|
|
|
* @since Block Canvas 1.0
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function block_canvas_support() {
|
|
|
|
|
|
|
|
// Enqueue editor styles.
|
|
|
|
add_editor_style( 'style.css' );
|
|
|
|
|
2022-10-28 15:43:41 +00:00
|
|
|
// Make theme available for translation.
|
|
|
|
load_theme_textdomain( 'block-canvas' );
|
2022-03-17 10:18:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
|
|
|
add_action( 'after_setup_theme', 'block_canvas_support' );
|
|
|
|
|
|
|
|
if ( ! function_exists( 'block_canvas_styles' ) ) :
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue styles.
|
|
|
|
*
|
|
|
|
* @since Block Canvas 1.0
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function block_canvas_styles() {
|
|
|
|
|
|
|
|
// Register theme stylesheet.
|
|
|
|
wp_register_style(
|
|
|
|
'block_canvas-style',
|
2022-09-15 19:24:58 +00:00
|
|
|
get_stylesheet_directory_uri() . '/style.css',
|
2022-03-17 10:18:33 +00:00
|
|
|
array(),
|
|
|
|
wp_get_theme()->get( 'Version' )
|
|
|
|
);
|
|
|
|
|
|
|
|
// Enqueue theme stylesheet.
|
|
|
|
wp_enqueue_style( 'block_canvas-style' );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
|
|
|
add_action( 'wp_enqueue_scripts', 'block_canvas_styles' );
|