-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfunctions.php
More file actions
448 lines (381 loc) · 12.5 KB
/
functions.php
File metadata and controls
448 lines (381 loc) · 12.5 KB
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<?php
/**
* Extendable functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Extendable
* @since Extendable 1.0
*/
if ( ! defined( 'EXTENDABLE_THEME_VERSION' ) ) {
$theme_version = wp_get_theme()->get( 'Version' );
define( 'EXTENDABLE_THEME_VERSION', is_string( $theme_version ) ? $theme_version : '1.0.0' );
}
if ( ! function_exists( 'extendable_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since Extendable 1.0
*
* @return void
*/
function extendable_support() {
// Add support for block styles.
add_theme_support( 'wp-block-styles' );
global $wp_version;
// Add style for WordPress older versions.
if ( version_compare( $wp_version, '6.0.2', '<=' ) ) {
$editor_style = array(
'style.css',
'/assets/css/deprecate-style.css',
);
} else {
$editor_style = 'style.css';
}
// Enqueue editor styles.
add_editor_style( $editor_style );
}
endif;
add_action( 'after_setup_theme', 'extendable_support' );
if ( ! function_exists( 'extendable_styles' ) ) :
/**
* Enqueue styles.
*
* @since Extendable 1.0
*
* @return void
*/
function extendable_styles() {
// Register theme stylesheet.
wp_register_style(
'extendable-style',
get_template_directory_uri() . '/style.css',
array(),
EXTENDABLE_THEME_VERSION
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'extendable-style' );
global $wp_version;
if ( version_compare( $wp_version, '6.0.2', '<=' ) ) {
// Register deprecate stylesheet.
wp_register_style(
'extendable-deprecate-style',
get_template_directory_uri() . '/assets/css/deprecate-style.css',
array(),
EXTENDABLE_THEME_VERSION
);
// Enqueue deprecate stylesheet.
wp_enqueue_style( 'extendable-deprecate-style' );
}
}
endif;
add_action( 'wp_enqueue_scripts', 'extendable_styles' );
/**
* Enqueue block-specific styles.
*
* @since Extendable 2.0.11
*
* @return void
*/
function extendable_enqueue_block_styles() {
// Check for specific blocks and enqueue their styles
if ( has_block( 'contact-form-7/contact-form-selector' ) ) {
wp_enqueue_style(
'extendable-contact-form-7-style',
get_template_directory_uri() . '/assets/css/contact-form-7.css',
array(),
EXTENDABLE_THEME_VERSION
);
}
if ( has_block( 'wpforms/form-selector' ) ) {
wp_enqueue_style(
'extendable-wpforms-style',
get_template_directory_uri() . '/assets/css/wpforms.css',
array(),
EXTENDABLE_THEME_VERSION
);
}
}
add_action( 'enqueue_block_assets', 'extendable_enqueue_block_styles' );
/**
* Registers pattern categories.
*
* @since Extendable 1.0
*
* @return void
*/
function extendable_register_pattern_categories() {
$block_pattern_categories = array(
'header' => array( 'label' => __( 'Headers', 'extendable' ) ),
'footer' => array( 'label' => __( 'Footers', 'extendable' ) ),
);
/**
* Filters the theme block pattern categories.
*
* @since Extendable 1.0
*
* @param array[] $block_pattern_categories {
* An associative array of block pattern categories, keyed by category name.
*
* @type array[] $properties {
* An array of block category properties.
*
* @type string $label A human-readable label for the pattern category.
* }
* }
*/
$block_pattern_categories = apply_filters( 'extendable_block_pattern_categories', $block_pattern_categories );
foreach ( $block_pattern_categories as $name => $properties ) {
if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) {
register_block_pattern_category( $name, $properties );
}
}
}
add_action( 'init', 'extendable_register_pattern_categories', 9 );
/**
* Include animation functionality
*/
require_once get_template_directory() . '/inc/animations.php';
/**
* Add primary-foreground duotone to extendify demo Site Logo block.
*
* @param array $parsed_block Parsed block data.
* @return array Filtered block data.
*/
function extendable_add_duotone_to_extendify_demo_site_logo( array $parsed_block ) : array {
if ( 'core/site-logo' !== $parsed_block['blockName'] ) {
return $parsed_block;
}
$logo_url = $parsed_block['attrs']['url'] ?? '';
if ( '' === $logo_url ) {
$logo_id = (int) get_theme_mod( 'custom_logo' );
$logo_url = $logo_id ? wp_get_attachment_url( $logo_id ) : '';
}
if ( '' === $logo_url ) {
return $parsed_block;
}
$logo_file = wp_basename( $logo_url );
$allowed_prefixes = array( 'extendify-demo-', 'ext-custom-logo-' );
$matches = false;
foreach ( $allowed_prefixes as $prefix ) {
if ( function_exists( 'str_starts_with' ) ) {
$matches = str_starts_with( $logo_file, $prefix );
} else {
$matches = 0 === strpos( $logo_file, $prefix );
}
if ( $matches ) {
break;
}
}
if ( ! $matches ) {
return $parsed_block;
}
$parsed_block['attrs']['style']['color']['duotone'] =
'var:preset|duotone|primary-foreground';
return $parsed_block;
}
add_filter( 'render_block_data', 'extendable_add_duotone_to_extendify_demo_site_logo', 10 );
/**
* Exclude WooCommerce Templates from the Block Editor When WooCommerce Is Inactive
*
* @package Extendable
* @since Extendable 2.0.21
*/
function extendable_exclude_wc_block_templates( $templates, $query ) {
if ( ! class_exists( 'WooCommerce' ) ) {
$wc_template_slugs = array( 'checkout', 'single-product', 'archive-product' );
foreach ( $templates as $key => $template ) {
if ( isset( $template->slug ) && in_array( $template->slug, $wc_template_slugs, true ) ) {
unset( $templates[ $key ] );
}
}
}
return $templates;
}
add_filter( 'get_block_templates', 'extendable_exclude_wc_block_templates', 10, 2 );
/**
* Navigation customizations
*
* @package Extendable
* @since Extendable 2.0.23
*/
if ( ! function_exists( 'extendable_enqueue_navigation_customizations' ) ) :
/**
* Enqueue the JS that fetches logo & site title to customize the mobile navigation.
*
*/
function extendable_enqueue_navigation_customizations() {
$logo_id = get_theme_mod( 'custom_logo' );
$logo_url = $logo_id ? wp_get_attachment_image_url( $logo_id, 'full' ) : '';
$site_title = get_bloginfo( 'name' );
wp_enqueue_script(
'extendable-navigation_customizations',
get_template_directory_uri() . '/assets/js/navigation-customization.js',
array(), // no dependencies; add 'wp-interactivity' if you switch back to that version
null,
true // load in footer
);
wp_localize_script( 'extendable-navigation_customizations', 'ExtendableNavData',
array(
'logoUrl' => $logo_url,
'siteTitle' => $site_title,
)
);
}
endif;
add_action( 'wp_enqueue_scripts', 'extendable_enqueue_navigation_customizations' );
/**
* Set default template for new pages in the block editor (auto-drafts)
*
* @since Extendable 2.0.26
* @return void
*/
function extendable_set_default_template_for_auto_drafts( WP_REST_Response $response, WP_Post $post ) {
if ( 'page' !== $post->post_type ) {
return $response;
}
if ( 'auto-draft' !== $post->post_status ) {
return $response;
}
$current_template = isset( $response->data['template'] ) ? $response->data['template'] : '';
if ( ! empty( $current_template ) && 'page' !== $current_template ) {
return $response;
}
$response->data['template'] = 'page-with-title';
return $response;
}
add_filter( 'rest_prepare_page', 'extendable_set_default_template_for_auto_drafts', 10, 2 );
/**
* Set default template for new pages when saved/published
*
* @since Extendable 2.0.28
* @param int $post_id Post ID.
* @param WP_Post $post Post object.
* @param bool $update Whether this is an existing post being updated.
* @return void
*/
function extendable_set_default_template_for_new_pages( $post_id, $post, $update ) {
if ( 'page' !== $post->post_type ) {
return;
}
if ( $update ) {
return;
}
if ( 'revision' === $post->post_status ) {
return;
}
$current_template = get_page_template_slug( $post_id );
// If no template is set or it's the default template, set our default
if ( empty( $current_template ) || 'page' === $current_template ) {
update_post_meta( $post_id, '_wp_page_template', 'page-with-title' );
}
}
add_action( 'wp_insert_post', 'extendable_set_default_template_for_new_pages', 10, 3 );
/**
* Hide block style variations from editor UI while keeping them registered
*/
function extendable_hide_block_style_variations() {
$css = '
.block-editor-block-styles__item[aria-label*="Brutalism 1"],
.block-editor-block-styles__item[aria-label*="Organic 1"],
.block-editor-block-styles__item[aria-label*="Soft 1"],
.block-editor-block-styles__item[aria-label*="Gradient 1"],
.block-editor-block-styles__item[aria-label*="Matrix 1"],
.block-editor-block-styles__item[aria-label*="Prism 1"],
.block-editor-block-styles__item[aria-label*="Wave 1"] {
display: none !important;
}
';
wp_add_inline_style('wp-edit-blocks', $css);
}
add_action( 'enqueue_block_editor_assets', 'extendable_hide_block_style_variations' );
/**
* Hide block style variations from site editor style panel
*/
function extendable_hide_site_editor_block_style_variations() {
$css = '
/* Hide specific design aesthetic variations in site editor */
.components-navigator-button[id*="brutalism-1--"],
.components-navigator-button[id*="organic-1--"],
.components-navigator-button[id*="soft-1--"],
.components-navigator-button[id*="gradient-1--"],
.components-navigator-button[id*="matrix-1--"],
.components-navigator-button[id*="prism-1--"],
.components-navigator-button[id*="wave-1--"] {
display: none !important;
}
/* Hide the Style Variations heading if all variations are hidden */
.components-h-stack:has(.components-navigator-button[id*="ext-preset--"]:not([style*="display: none"])) .edit-site-global-styles-subtitle:contains("Style Variations") {
display: none !important;
}
/* Alternative approach - hide the entire Style Variations section */
.edit-site-global-styles-subtitle:contains("Style Variations") + .components-item-group {
display: none !important;
}
.edit-site-global-styles-subtitle:contains("Style Variations") {
display: none !important;
}
';
wp_add_inline_style('wp-edit-site', $css);
}
add_action( 'admin_enqueue_scripts', 'extendable_hide_site_editor_block_style_variations' );
// Temporary fix: Hide matrix-1, prism-1, wave-1 variations when Extendify < 2.4.0
function extendable_filter_global_styles_rest_response( $response, $handler, $request ) {
$route = $request->get_route();
if ( strpos( $route, '/wp/v2/global-styles/themes/' ) === false ) {
return $response;
}
if ( ! function_exists( 'get_plugins' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$plugins = get_plugins();
$should_filter = false;
foreach ( $plugins as $plugin_file => $plugin_data ) {
if ( 'extendify-local' === $plugin_data['TextDomain'] && is_plugin_active( $plugin_file ) ) {
if ( version_compare( $plugin_data['Version'], '2.4.0', '<' ) ) {
$should_filter = true;
}
break;
}
}
if ( ! $should_filter ) {
return $response;
}
$patterns = array( 'matrix-1', 'prism-1', 'wave-1' );
$data = $response->get_data();
if ( isset( $data['styles']['blocks'] ) && is_array( $data['styles']['blocks'] ) ) {
foreach ( $data['styles']['blocks'] as $block_name => $block_data ) {
if ( isset( $block_data['variations'] ) && is_array( $block_data['variations'] ) ) {
foreach ( $block_data['variations'] as $variation_slug => $variation_data ) {
foreach ( $patterns as $pattern ) {
if ( strpos( $variation_slug, $pattern ) !== false ) {
unset( $data['styles']['blocks'][ $block_name ]['variations'][ $variation_slug ] );
break;
}
}
}
if ( empty( $data['styles']['blocks'][ $block_name ]['variations'] ) ) {
unset( $data['styles']['blocks'][ $block_name ]['variations'] );
}
}
}
}
if ( isset( $data['_links']['wp:block-style-variations'] ) ) {
$data['_links']['wp:block-style-variations'] = array_filter(
$data['_links']['wp:block-style-variations'],
function( $variation ) use ( $patterns ) {
$href = $variation['href'] ?? '';
foreach ( $patterns as $pattern ) {
if ( strpos( $href, $pattern ) !== false ) {
return false;
}
}
return true;
}
);
$data['_links']['wp:block-style-variations'] = array_values( $data['_links']['wp:block-style-variations'] );
}
$response->set_data( $data );
return $response;
}
add_filter( 'rest_post_dispatch', 'extendable_filter_global_styles_rest_response', 10, 3 );