File "all.php"
Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/themes/spectra-one/inc/block-styles/all.php
File
size: 793 B (793 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
/**
* Require All Utilities
*
* @package Spectra One
* @author Brainstorm Force
* @since 0.0.1
*/
declare( strict_types=1 );
namespace Swt;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Added on init hook to prevent triggering of text-domain warning.
*/
add_action(
'init',
static function(): void {
require_once __DIR__ . '/post-terms.php';
require_once __DIR__ . '/search.php';
require_once __DIR__ . '/button.php';
require_once __DIR__ . '/separator.php';
require_once __DIR__ . '/latest-posts.php';
require_once __DIR__ . '/categories.php';
require_once __DIR__ . '/tag-cloud.php';
require_once __DIR__ . '/latest-comments.php';
require_once __DIR__ . '/archives.php';
require_once __DIR__ . '/post-author.php';
}
);