JoeHana
11/29/2013 - 2:36 PM

Define Layout for wpCasa

Define Layout for wpCasa

<?php

/**
 * Define Layout for wpCasa
 */
 
add_filter( 'wpsight_layout', 'custom_layout', 20 );

function custom_layout() {
	return 'four'; // choose between 'three' or 'four'. Four also includes the option for having 2 columns.
}