-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
103 lines (82 loc) · 2.29 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* The Evolution functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package WordPress
* @subpackage The Evolution
*/
if ( ! function_exists( 'evolution_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since The Evolution 1.0
*
* @return void
*/
function evolution_support() {
// Enqueue editor styles.
add_editor_style( 'style.css' );
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
*/
load_theme_textdomain( 'the-evolution', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'script',
'style'
) );
// Adding excerpt for page
add_post_type_support( 'page', 'excerpt' );
/**
* Load post formats
**/
add_theme_support( 'post-formats',array( 'aside', 'gallery', 'link', 'image', 'status', 'video', 'quote' ) );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// Add support for responsive embedded content.
add_theme_support( 'responsive-embeds' );
}
endif;
add_action( 'after_setup_theme', 'evolution_support' );
if ( ! function_exists( 'evolution_styles' ) ) :
/**
* Enqueue styles.
*
* @since The Evolution 1.0
*
* @return void
*/
function evolution_styles() {
// Register theme stylesheet.
$theme_version = wp_get_theme()->get( 'Version' );
$version_string = is_string( $theme_version ) ? $theme_version : false;
wp_register_style(
'evolution-style',
get_template_directory_uri() . '/style.css',
array(),
$version_string
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'evolution-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'evolution_styles' );
// Add block patterns
require get_template_directory() . '/inc/block-patterns.php';