astra_default_filter_input( string $output, string $key )
Function to filter input of Custom Layout’s code editor.
Description
Parameters
- $output
-
(string) (Required) Output.
- $key
-
(string) (Required) Key.
Return
(string)
Source
File: inc/w-org-version.php
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. }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
4.8.4 | Introduced. |