' . do_shortcode($content) . ''; }
add_shortcode('one_half', 'one_half');
// COLUMN 1/2 <
function one_half_last( $atts, $content = null ) {
return '
' . do_shortcode($content) . '
'; }
add_shortcode('one_half_last', 'one_half_last');
// COLUMN 1/3
function one_third( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('one_third', 'one_third');
// COLUMN 1/3<
function one_third_last( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('one_third_last', 'one_third_last');
// COLUMN 2/3
function two_third( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('two_third', 'two_third');
// COLUMN 2/3<
function two_third_last( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('two_third_last', 'two_third_last');
// COLUMN 1/4
function one_fourth( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('one_fourth', 'one_fourth');
// COLUMN 1/4<
function one_fourth_last( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('one_fourth_last', 'one_fourth_last');
// COLUMN 3/4
function three_fourth( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('three_fourth', 'three_fourth');
// COLUMN 3/4<
function three_fourth_last( $atts, $content = null ) {
return '' . do_shortcode($content) . '
'; }
add_shortcode('three_fourth_last', 'three_fourth_last');
?>