'.do_shortcode($content).''; } add_shortcode ("one_half", "one_half"); /// 1/3 COLUMN function one_third($atts, $content = null) { return '
'.do_shortcode($content).'
'; } add_shortcode ("one_third", "one_third"); /// 2/3 COLUMN function two_third($atts, $content = null) { return '
'.do_shortcode($content).'
'; } add_shortcode ("two_third", "two_third"); /// 1/4 COLUMN function one_quarter($atts, $content = null) { return '
'.do_shortcode($content).'
'; } add_shortcode ("one_quarter", "one_quarter"); /// 3/4 COLUMN function three_quarter($atts, $content = null) { return '
'.do_shortcode($content).'
'; } add_shortcode ("three_quarter", "three_quarter"); add_shortcode ("one_sixth", "one_sixth"); function one_sixth($atts, $content = null) { return '
'.do_shortcode($content).'
'; } add_shortcode ("div_row", "div_row"); function div_row($atts, $content = null) { return '
'.do_shortcode($content).'
'; }