-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
62 lines (57 loc) · 1.14 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
<?php
/**
* Functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package FSE
* @since 1.0.0
*/
/**
* Enqueue the style.css file.
*
* @since 1.0.0
*/
add_action(
'wp_enqueue_scripts',
function () {
wp_enqueue_style(
'ankur-style',
get_template_directory_uri() . '/assets/css/theme.css',
array(),
filemtime( get_template_directory() . '/assets/css/theme.css' )
);
}
);
/**
* Add block styles support.
*
* @since 1.0.0
*/
add_action(
'after_setup_theme',
function () {
add_theme_support( 'wp-block-styles' );
}
);
/**
* Additional editor styles.
* Using `add_editor_style` doesn't allow the styles to be inherited by child themes.
*
* @since 1.0.0
*/
add_action(
'enqueue_block_editor_assets',
function () {
wp_enqueue_style(
'ankur-editor-style',
get_template_directory_uri() . '/assets/css/editor.css',
array(),
filemtime( get_template_directory() . '/assets/css/editor.css' )
);
}
);
// Add block styles.
require get_template_directory() . '/inc/block-styles.php';
// Add block patterns.
require get_template_directory() . '/inc/block-patterns.php';