-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
304 lines (278 loc) · 8.63 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
/**
* Twenty Twenty-Four functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
* @since Twenty Twenty-Four 1.0
*/
/**
* Register block styles.
*/
if (! function_exists('intranetbasetheme_block_styles')) {
/**
* Register custom block styles
*
* @since Twenty Twenty-Four 1.0
*
* @return void
*/
function intranetbasetheme_block_styles()
{
register_block_style(
'core/details',
[
'name' => 'arrow-icon-details',
'label' => __('Arrow icon', 'intranetbasetheme'),
/*
* Styles for the custom Arrow icon style of the Details block
*/
'inline_style' => '
.is-style-arrow-icon-details {
padding-top: var(--wp--preset--spacing--10);
padding-bottom: var(--wp--preset--spacing--10);
}
.is-style-arrow-icon-details summary {
list-style-type: "\2193\00a0\00a0\00a0";
}
.is-style-arrow-icon-details[open]>summary {
list-style-type: "\2192\00a0\00a0\00a0";
}',
]
);
register_block_style(
'core/heading',
[
'name' => 'mobile-horizontal',
'label' => __('Ensure mobile horizontal', 'intranetbasetheme'),
'inline_style' => '
@media (max-width: 768px){
.is-style-mobile-horizontal {
writing-mode: horizontal-tb !important;
text-align: left !important;
rotate: 0deg !important;
}
}',
]
);
register_block_style(
'core/columns',
[
'name' => 'reverse-column',
'label' => __('Reverse mobile stacking', 'intranetbasetheme'),
'inline_style' => '
@media (max-width: 768px){
.is-style-reverse-column {
flex-direction: column-reverse;
}
}',
]
);
register_block_style(
'core/post-terms',
[
'name' => 'pill',
'label' => __('Pill', 'intranetbasetheme'),
'inline_style' => '
.is-style-pill a,
.is-style-pill span:not([class], [data-rich-text-placeholder]) {
display: inline-block;
background-color: var(--wp--preset--color--base-2);
padding: 0.375rem 0.875rem;
border-radius: var(--wp--preset--spacing--20);
}
.is-style-pill a:hover {
background-color: var(--wp--preset--color--contrast-3);
}',
]
);
register_block_style(
'core/list',
[
'name' => 'checkmark-list',
'label' => __('Checkmark', 'intranetbasetheme'),
/*
* Styles for the custom checkmark list block style
* https://github.com/WordPress/gutenberg/issues/51480
*/
'inline_style' => '
ul.is-style-checkmark-list {
list-style-type: "\2713";
}
ul.is-style-checkmark-list li {
padding-inline-start: 1ch;
}',
]
);
register_block_style(
'core/site-title',
[
'name' => 'funky-font',
'label' => __('Funky Font', 'intranetbasetheme'),
'inline_style' => '
.is-style-funky-font>a {
text-shadow: 3px 3px #5edb73, 6px 6px #ea952b;
}',
]
);
register_block_style(
'core/navigation-link',
[
'name' => 'arrow-link',
'label' => __('With arrow', 'intranetbasetheme'),
/*
* Styles for the custom arrow nav link block style
*/
'inline_style' => '
.is-style-arrow-link .wp-block-navigation-item__label:after {
content: "\2197";
padding-inline-start: 0.25rem;
vertical-align: middle;
text-decoration: none;
display: inline-block;
}',
]
);
register_block_style(
'core/heading',
[
'name' => 'asterisk',
'label' => __('With asterisk', 'intranetbasetheme'),
'inline_style' => "
.is-style-asterisk:before {
content: '';
width: 1.5rem;
height: 3rem;
background: var(--wp--preset--color--contrast-2, currentColor);
clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
display: block;
}
/* Hide the asterisk if the heading has no content, to avoid using empty headings to display the asterisk only, which is an A11Y issue */
.is-style-asterisk:empty:before {
content: none;
}
.is-style-asterisk:-moz-only-whitespace:before {
content: none;
}
.is-style-asterisk.has-text-align-center:before {
margin: 0 auto;
}
.is-style-asterisk.has-text-align-right:before {
margin-left: auto;
}
.rtl .is-style-asterisk.has-text-align-left:before {
margin-right: auto;
}",
]
);
}
}
add_action('init', 'intranetbasetheme_block_styles');
/**
* Enqueue Javascript files
*/
if (! function_exists('intranetbasetheme_scripts')) {
function intranetbasetheme_scripts()
{
wp_enqueue_script(
'scroll-view',
get_template_directory_uri().'/assets/js/scroll-view.js',
[],
false,
true
);
}
}
add_action('after_setup_theme', 'intranetbasetheme_scripts');
/**
* Enqueue fonts for preload.
*/
if (! function_exists('bchubb_development_theme_font_preload')) {
/**
* Enqueue fonts into head of document
*
* @since bchubb_development_theme 1.0
*
* @return void
*/
function bchubb_development_theme_font_preload(): void {
echo '
<link
rel="preload"
href="'.get_template_directory_uri().'/assets/fonts/shrikhand/Shrikhand-Regular.ttf"
as="font"
type="font/ttf"
>
<link
rel="preload"
href="'.get_template_directory_uri().'/assets/fonts/sora/Sora-VariableFont_wght.ttf"
as="font"
type="font/ttf"
>
<link
rel="preload"
href="'.get_template_directory_uri().'/assets/fonts/unbounded/Unbounded-VariableFont_wght.ttf"
as="font"
type="font/ttf"
>
';
}
}
if (! is_admin()) {
add_action('wp_head', 'bchubb_development_theme_font_preload');
}
/**
* Enqueue block stylesheets.
*/
if (! function_exists('intranetbasetheme_block_stylesheets')) {
/**
* Enqueue custom block stylesheets
*
* @since Twenty Twenty-Four 1.0
*
* @return void
*/
function intranetbasetheme_block_stylesheets()
{
/**
* The wp_enqueue_block_style() function allows us to enqueue a stylesheet
* for a specific block. These will only get loaded when the block is rendered
* (both in the editor and on the front end), improving performance
* and reducing the amount of data requested by visitors.
*
* See https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/ for more info.
*/
wp_enqueue_block_style(
'core/button',
[
'handle' => 'intranetbasetheme-button-style-outline',
'src' => get_parent_theme_file_uri('assets/css/button-outline.css'),
'ver' => wp_get_theme(get_template())->get('Version'),
'path' => get_parent_theme_file_path('assets/css/button-outline.css'),
]
);
}
}
add_action('init', 'intranetbasetheme_block_stylesheets');
/**
* Register pattern categories.
*/
if (! function_exists('intranetbasetheme_pattern_categories')) {
/**
* Register pattern categories
*
* @since Twenty Twenty-Four 1.0
*
* @return void
*/
function intranetbasetheme_pattern_categories()
{
register_block_pattern_category(
'page',
[
'label' => _x('Pages', 'Block pattern category'),
'description' => __('A collection of full page layouts.'),
]
);
}
}
add_action('init', 'intranetbasetheme_pattern_categories');