// Apply Full Width Content layout to Archives page.
add_action( 'get_header', 'awk_set_full_layout' );
function awk_set_full_layout() {
if ( ! ( is_home() || is_archive() ) ) {
return;
}
// Force full width content
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
}