at path:
ROOT
/
wp-content
/
themes
/
understrap
/
inc
/
wpcom.php
run:
R
W
Run
block-editor.php
1.98 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
class-wp-bootstrap-navwalker.php
20.65 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
custom-comments.php
3.16 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
custom-header.php
1.66 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
customizer.php
8.68 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
deprecated.php
3.12 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
editor-color-palette.json
298 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
editor.php
2.81 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
enqueue.php
1.5 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
extras.php
8.3 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
hooks.php
1.52 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
jetpack.php
1.74 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
pagination.php
3.59 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
setup.php
2.77 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
style-wpcom.css
125 By
2026-02-09 12:38:27
R
W
Run
Delete
Rename
template-tags.php
8.31 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
theme-settings.php
1.26 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
widgets.php
6.1 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
woocommerce.php
5.62 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
wpcom.php
1.12 KB
2026-02-09 12:38:27
R
W
Run
Delete
Rename
error_log
up
📄
wpcom.php
Save
<?php /** * WordPress.com-specific functions and definitions * * This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`. * * @package Understrap */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; add_action( 'after_setup_theme', 'understrap_wpcom_setup' ); if ( ! function_exists( 'understrap_wpcom_setup' ) ) { /** * Adds support for wp.com-specific theme functions. * * @global array $themecolors */ function understrap_wpcom_setup() { global $themecolors; // Set theme colors for third party services. if ( ! isset( $themecolors ) ) { $themecolors = array( 'bg' => '', 'border' => '', 'text' => '', 'link' => '', 'url' => '', ); } /* Add WP.com print styles */ add_theme_support( 'print-styles' ); } } add_action( 'wp_enqueue_scripts', 'understrap_wpcom_styles' ); if ( ! function_exists( 'understrap_wpcom_styles' ) ) { /** * WordPress.com-specific styles */ function understrap_wpcom_styles() { wp_enqueue_style( 'understrap-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', array(), '20160411' ); } }