<?php
// get theme options
if ( ! function_exists( 'cs_get_option' ) ) {
function cs_get_option( $option = '', $default = null ) {
$options = get_option( 'choicy_theme_options' );
return ( isset( $options[$option] ) ) ? $options[$option] : $default;
}
}