11 lines
265 B
PHP
11 lines
265 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
defined('ABSPATH') || exit;
|
|
|
|
add_action('init', 'xshop_gutenberg_setup');
|
|
|
|
function xshop_gutenberg_setup(): void {
|
|
// Allow wide/full alignment where theme supports it later via theme.json.
|
|
add_theme_support('align-wide');
|
|
}
|