You appear to be a bot. Output may be restricted
Description
Return whether we're on a view that supports a one or two column layout.
Usage
twentyseventeen_is_view_with_layout_option();
Parameters
Returns
void
Source
File name: twentyseventeen/inc/customizer.php
Lines:
1 to 5 of 5
function twentyseventeen_is_view_with_layout_option() { // This option is available on all pages. It's also available on archives when there isn't a sidebar. return ( is_page() || ( is_archive() && ! is_active_sidebar( 'sidebar-1' ) ) ); }