-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
196 lines (163 loc) · 4.86 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
use Timber\Timber;
use Timber\Site;
/**
* Timber starter-theme
* https://github.com/timber/starter-theme
*/
// Load Composer dependencies.
require_once __DIR__ . '/vendor/autoload.php';
// Set up Vite
require_once get_template_directory() . '/lib/vite.php';
new WPVite(isChild: false);
// Get Utility functions
require_once get_template_directory() . '/lib/utilities.php';
// Get ACF and ACF Blocks defaults
require_once get_template_directory() . '/lib/acf.php';
Timber::init();
/**
* Sets the directories (inside your theme) to find .twig files
*/
Timber::$dirname = ['templates', 'views'];
/**
* We're going to configure our theme inside of a subclass of Timber\Site
* You can move this to its own file and include here via php's include("MySite.php")
*/
class DeepspaceTimber extends Site {
/** Add timber support. */
public function __construct() {
add_action('after_setup_theme', array($this, 'theme_supports'));
add_filter('timber/context', array($this, 'add_to_context'));
add_filter('timber/twig', array($this, 'add_to_twig'));
add_action('init', array($this, 'register_post_types'));
add_action('init', array($this, 'register_taxonomies'));
parent::__construct();
}
/** This is where you can register custom post types. */
public function register_post_types() {
}
/** This is where you can register custom taxonomies. */
public function register_taxonomies() {
}
/** This is where you add some context
*
* @param string $context context['this'] Being the Twig's {{ this }}.
*/
public function add_to_context($context) {
$context['foo'] = 'bar';
$context['stuff'] = 'I am a value set in your functions.php file';
$context['notes'] = 'These values are available everytime you call Timber::context();';
$context['site_logo'] = site_logo();
$context['privacy_policy_url'] = get_privacy_policy_url();
// Menus
$menu = [];
if (has_nav_menu('header_nav')) {
$menu['header_nav'] = Timber::get_menu('header_nav');
}
if (has_nav_menu('header_buttons')) {
$menu['header_buttons'] = Timber::get_menu('header_buttons');
}
if (has_nav_menu('footer_social')) {
$menu['footer_social'] = Timber::get_menu('footer_social');
}
if (has_nav_menu('footer_nav')) {
$menu['footer_nav'] = Timber::get_menu('footer_nav');
}
if (has_nav_menu('footer_utility')) {
$menu['footer_utility'] = Timber::get_menu('footer_utility');
}
$context['menu'] = $menu;
$context['site'] = $this;
return $context;
}
public function theme_supports() {
// Add default posts and comments RSS feed links to head.
add_theme_support('automatic-feed-links');
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support('title-tag');
/*
* 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');
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'comment-form',
'comment-list',
'gallery',
'caption',
)
);
/*
* Enable support for Post Formats.
*
* See: https://codex.wordpress.org/Post_Formats
*/
add_theme_support(
'post-formats',
array(
'aside',
'image',
'video',
'quote',
'link',
'gallery',
'audio',
)
);
/*
* Enable support for Custom Logo
*
* See: https://developer.wordpress.org/themes/functionality/custom-logo/
*/
add_theme_support('custom-logo');
/*
* Enable support for specific menu locations
*
* See: https://developer.wordpress.org/themes/functionality/navigation-menus/
*/
add_theme_support('menus');
register_nav_menus(
[
'header_nav' => esc_html__('Header Nav', 'DeepspaceTimber'),
'header_buttons' => esc_html__('Header Buttons', 'DeepspaceTimber'),
'footer_nav' => esc_html__('Footer Nav', 'DeepspaceTimber'),
'footer_social' => esc_html__('Footer Social Links', 'DeepspaceTimber')
]
);
add_theme_support('wp-block-styles');
add_theme_support('align-wide');
add_theme_support('align-center');
add_theme_support('align-full');
add_theme_support('responsive-embeds');
}
/** This Would return 'foo bar!'.
*
* @param string $text being 'foo', then returned 'foo bar!'.
*/
public function myfoo($text) {
$text .= ' bar!';
return $text;
}
/** This is where you can add your own functions to twig.
*
* @param string $twig get extension.
*/
public function add_to_twig($twig) {
$twig->addExtension(new Twig\Extension\StringLoaderExtension());
$twig->addFilter(new Twig\TwigFilter('myfoo', array($this, 'myfoo')));
return $twig;
}
}
new DeepspaceTimber();