Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Show dates and prices for the events of a production. Place this code inside your template (eg. single.php or sidebar.php) at the position that you would like the dates and prices to appear.
/*
* Show dates and prices for the events of this production.
*/
if ( is_singular( 'wp_theatre_prod' ) ) {
$production = new WPT_Production();
echo '<ul>';
foreach ( $production->events() as $event ) {
echo '<li>'.$event->startdate_html().$event->prices_html().'</li>';
}
echo '</ul>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment