Twenty Seventeen custom section - one column layout
I have a child theme for twenty-seventeen and am trying to get the possibility to set sections to a one-column layout while the other ones still have their two-columns layout.
There seems to be an idea for a solution where a page template is created and a function is inserted into functions.php
:
add_filter( 'body_class', 'one_column_page_body_classes', 12 );
function one_column_page_body_classes( $classes ) {
if ( is_page_template( 'template-parts/one-column-page.php' ) in_array('page-two-column', $classes) ) {
unset( $classes[array_search('page-two-column', $classes)] );
$classes[] = 'page-one-column';
}
return $classes;
}
I did not manage to get this working.
Thanks in advance!
Topic screen-layout columns Wordpress
Category Web