You appear to be a bot. Output may be restricted
Description
Sanitize the Featured Content layout value.
Usage
$string = twentyfourteen_sanitize_layout( $layout );
Parameters
- $layout
- ( string ) required – Layout type.
Returns
string Filtered layout type (grid|slider).
Source
File name: twentyfourteen/inc/customizer.php
Lines:
1 to 8 of 8
function twentyfourteen_sanitize_layout( $layout ) { if ( ! in_array( $layout, array( 'grid', 'slider' ), true ) ) { $layout = 'grid'; } return $layout; }