I’m Chris – A St. Louis WordPress CodePoet
I’m a St Louis WordPress web design enthusiast. I also own a WordPress web design company in St Louis MO and this is my “sort-of attempt” at creating a blog. You can always reach out to inquire about a WordPress project; I’m sure I can help
What Can I Do For Your WordPress Website?

BUILD
Design helps visitors trust your brand, why leave that to an inexperienced freelancer?

ANALYIZE
Learning about what you’re doing at online helps to make your website a better place.

OPTIMIZE
Targeting unique visitors who need your product or service is key. I can help you to make sense of SEO & Website Targeting
[code]
function simple_table( $atts ) {
extract( shortcode_atts( array(
'cols' => 'none',
'data' => 'none',
), $atts ) );
$cols = explode(',',$cols);
$data = explode(',',$data);
$total = count($cols);
$output .= '
| '.$col.' |
| '.$datum.' |
';
return $output;
}
add_shortcode( 'table', 'simple_table' );
[/code]
and it goes a little something like this:

