at path:
ROOT
/
wp-content
/
themes
/
understrap
/
functions.php
run:
R
W
Run
css
DIR
2026-02-09 12:38:27
R
W
Run
fonts
DIR
2026-02-09 12:38:27
R
W
Run
global-templates
DIR
2026-02-09 12:38:27
R
W
Run
inc
DIR
2026-02-09 12:38:27
R
W
Run
js
DIR
2026-02-09 12:38:27
R
W
Run
languages
DIR
2026-02-09 12:38:27
R
W
Run
loop-templates
DIR
2026-02-09 12:38:27
R
W
Run
page-templates
DIR
2026-02-09 12:38:27
R
W
Run
sidebar-templates
DIR
2026-02-09 12:38:27
R
W
Run
woocommerce
DIR
2026-02-09 12:38:27
R
W
Run
404.php
2.11 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
LICENSE
34.33 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
archive.php
1.65 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
author.php
2.73 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
comments.php
1.78 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
footer.php
889 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
functions.php
1.79 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
header.php
1.13 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
index.php
1.8 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
page.php
1.24 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
readme.txt
2.29 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
screenshot.png
494.68 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
search.php
1.7 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
searchform.php
1.54 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
sidebar.php
328 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
single.php
1.08 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
style.css
1.6 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
error_log
up
📄
functions.php
Save
<?php /** * UnderStrap functions and definitions * * @package Understrap */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; // UnderStrap's includes directory. $understrap_inc_dir = 'inc'; // Array of files to include. $understrap_includes = array( '/theme-settings.php', // Initialize theme default settings. '/setup.php', // Theme setup and custom theme supports. '/widgets.php', // Register widget area. '/enqueue.php', // Enqueue scripts and styles. '/template-tags.php', // Custom template tags for this theme. '/pagination.php', // Custom pagination for this theme. '/hooks.php', // Custom hooks. '/extras.php', // Custom functions that act independently of the theme templates. '/customizer.php', // Customizer additions. '/custom-comments.php', // Custom Comments file. '/class-wp-bootstrap-navwalker.php', // Load custom WordPress nav walker. Trying to get deeper navigation? Check out: https://github.com/understrap/understrap/issues/567. '/editor.php', // Load Editor functions. '/block-editor.php', // Load Block Editor functions. '/deprecated.php', // Load deprecated functions. ); // Load WooCommerce functions if WooCommerce is activated. if ( class_exists( 'WooCommerce' ) ) { $understrap_includes[] = '/woocommerce.php'; } // Load Jetpack compatibility file if Jetpack is activiated. if ( class_exists( 'Jetpack' ) ) { $understrap_includes[] = '/jetpack.php'; } // Include files. foreach ( $understrap_includes as $file ) { require_once get_theme_file_path( $understrap_inc_dir . $file ); }