Created
February 17, 2018 22:59
-
-
Save flegfleg/a35581eb5f484d91d56d823e2d4219a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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