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.
}

Changelog

Changelog
Version Description
4.8.4 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.