at path:
ROOT
/
wp-content
/
themes
/
astra
/
inc
/
w-org-version.php
run:
R
W
Run
abilities
DIR
2026-07-10 16:52:16
R
W
Run
addons
DIR
2026-07-10 16:52:16
R
W
Run
assets
DIR
2026-07-10 16:52:16
R
W
Run
blog
DIR
2026-07-10 16:52:16
R
W
Run
builder
DIR
2026-07-10 16:52:16
R
W
Run
compatibility
DIR
2026-07-10 16:52:16
R
W
Run
core
DIR
2026-07-10 16:52:16
R
W
Run
customizer
DIR
2026-07-10 16:52:16
R
W
Run
dynamic-css
DIR
2026-07-10 16:52:16
R
W
Run
integrations
DIR
2026-07-10 16:52:16
R
W
Run
lib
DIR
2026-07-10 16:52:16
R
W
Run
metabox
DIR
2026-07-10 16:52:16
R
W
Run
modules
DIR
2026-07-10 16:52:16
R
W
Run
schema
DIR
2026-07-10 16:52:16
R
W
Run
theme-update
DIR
2026-07-10 16:52:16
R
W
Run
admin-functions.php
1.62 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-after-setup-theme.php
11.32 KB
2025-12-16 13:01:08
R
W
Run
Delete
Rename
class-astra-dynamic-css.php
299.96 KB
2026-07-06 07:35:32
R
W
Run
Delete
Rename
class-astra-extended-base-dynamic-css.php
6.43 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-global-palette.php
13.41 KB
2025-09-09 13:41:48
R
W
Run
Delete
Rename
class-astra-loop.php
7.2 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-memory-limit-notice.php
12.44 KB
2026-04-16 15:17:12
R
W
Run
Delete
Rename
class-astra-mobile-header.php
5.78 KB
2025-12-08 14:18:16
R
W
Run
Delete
Rename
extras.php
44.64 KB
2026-02-05 15:31:50
R
W
Run
Delete
Rename
google-fonts.php
200.86 KB
2026-07-06 07:35:32
R
W
Run
Delete
Rename
index.php
111 By
2024-11-11 15:51:54
R
W
Run
Delete
Rename
markup-extras.php
72.38 KB
2026-05-12 13:03:58
R
W
Run
Delete
Rename
template-parts.php
9.52 KB
2025-04-24 09:51:30
R
W
Run
Delete
Rename
template-tags.php
1.11 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
w-org-version.php
647 By
2025-07-01 14:56:58
R
W
Run
Delete
Rename
widgets.php
4.32 KB
2025-04-08 10:18:34
R
W
Run
Delete
Rename
error_log
up
📄
w-org-version.php
Save
<?php /** * This file ensures that it is w.org Astra theme. * * @package Astra * @since Astra 4.8.4 */ /** * Function to filter input of Custom Layout's code editor. * * @param string $output Output. * @param string $key Key. * @return string * @since 4.8.4 */ function astra_default_filter_input( $output, $key ) { return filter_input( INPUT_POST, $key, FILTER_DEFAULT ); // phpcs:ignore WordPressVIPMinimum.Security.PHPFilterFunctions.RestrictedFilter -- Default filter after all other cases, Keeping this filter for backward compatibility. } add_filter( 'astra_php_default_filter_input', 'astra_default_filter_input', 10, 2 );