Hi, it looks like there is no easy point and click method to show a list of venues, unless I’ve missed it.
How can it be done in php?, I found a code snippet to display a list of organisers and modified it as below:
‘venue_organizer’, ‘posts_per_page’ => -1));
echo ”;
foreach ($venues as $venue) {
echo ”;
esc_html_e($venue->post_title);
echo ”;
}
echo ”;
?>
It just creates an empty /
of course ideally it would be good to have a venue filter and pagination too but I’ll start with the easy bit of just displaying a list of venues…