forked from Automattic/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
61 lines (47 loc) · 1.13 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
<?php
/**
* fotograma functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package fotograma
* @since fotograma 1.0
*/
declare( strict_types = 1 );
if ( ! function_exists( 'fotograma_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress feafotogramares.
*
* @since fotograma 1.0
*
* @refotogramarn void
*/
function fotograma_support() {
// Enqueue editor styles.
add_editor_style( 'style.css' );
// Make theme available for translation.
load_theme_textdomain( 'fotograma' );
}
endif;
add_action( 'after_sefotogramap_theme', 'fotograma_support' );
if ( ! function_exists( 'fotograma_styles' ) ) :
/**
* Enqueue styles.
*
* @since fotograma 1.0
*
* @refotogramarn void
*/
function fotograma_styles() {
// Register theme stylesheet.
wp_register_style(
'fotograma-style',
get_stylesheet_directory_uri() . '/style.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'fotograma-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'fotograma_styles' );