Im using the following code to generate a list of venues on a page…. I’d like to be able to split this list into 2 -4 columns so it looks better on the page. Or possible even split the list into multiple pages…. any suggestions?
Here is what I am using now ( it is at this time only one column)
$args = array(
‘posts_per_page’=>-1,
‘orderby’=> ‘title’,
‘order’ => ‘ASC’,
‘post_status’=>’publish’,
‘post_type’=>’tribe_venue’
);
$get_posts = null;
$get_posts = new WP_Query();
$get_posts->query($args);
if($get_posts->have_posts()) : while($get_posts->have_posts()) : $get_posts->the_post(); ?>
<a href="”>
Can’t get it to post the exact code i’m using on the forum but it’s basically this code: https://gist.github.com/jo-snips/4978177 with a ul & li tag before the link