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

 

yup; you wanna make em.

 

 

[code]
function simple_table( $atts ) {
extract( shortcode_atts( array(
'cols' => 'none',
'data' => 'none',
), $atts ) );
$cols = explode(',',$cols);
$data = explode(',',$data);
$total = count($cols);
$output .= '

';
foreach($cols as $col):
$output .= '

';
endforeach;
$output .= '

';
$counter = 1;
foreach($data as $datum):
$output .= '

';
if($counter%$total==0):
$output .= '

';
endif;
$counter++;
endforeach;
$output .= '

'.$col.'
'.$datum.'

';
return $output;
}
add_shortcode( 'table', 'simple_table' );
[/code]

and it goes a little something like this:

Thank’s Reddit! .. Someone got me watching this on Facebook; the video is hilarious…

So Matt Varone’s article with code sample roxxors your face off — entering custom ACF fields shouldn’t be too tough following this code sample — and voila — a list of users like blog posts.

Query Authors in WP 3+