Skip to content

Instantly share code, notes, and snippets.

@flegfleg
Created February 17, 2018 22:59
Show Gist options
  • Save flegfleg/a35581eb5f484d91d56d823e2d4219a6 to your computer and use it in GitHub Desktop.
Save flegfleg/a35581eb5f484d91d56d823e2d4219a6 to your computer and use it in GitHub Desktop.
<?php
// see https://github.com/flegfleg/cb-temp/blob/master/classes/CB_Object.php#L161
$args = array (
'item_id' => get_the_id(), // This template is called in the loop, so you need to supply the id
);
$tf = new CB_Timeframe();
$tf->set_context('admin_table'); // either 1) 'timeframe' (default): group by timeframe or 2) 'calendar': group by date or 3) 'admin_table'
$tf->get_timeframes( $args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment