• Hello,
    I want to display the list of events per month on a page with different tabs.
    For the tabs I use the plugin Tabby Responsive Tabs.

    I can not find the code to display the list of events per month.

    Here is the code I use:

    ` <?php echo do_shortcode(‘[tabby title=”Janvier”]’); ?>

    <?php
    $events = eo_get_events(array(
    ‘numberposts’=>-1,
    ‘event_start_after’=>’2018-01-01’,
    ‘event_start_before’=>’2018-01-31’,
    ‘showpastevents’=>true,//Will be deprecated, but set it to true to play it safe.
    ));

    if($events):
    eo_get_template_part( ‘eo-loop-single-event’ );
    endif;
    ?>

    <?php echo do_shortcode(‘[tabby title=”Février”]’); ?>
    <?php
    $events = eo_get_events(array(
    ‘numberposts’=>-1,
    ‘event_start_after’=>’2018-02-01’,
    ‘event_start_before’=>’2018-02-31’,
    ‘showpastevents’=>true,//Will be deprecated, but set it to true to play it safe.
    ));

    if($events):
    eo_get_template_part( ‘eo-loop-single-event’ );
    endif;
    ?>
    ….

    This is not practical because I have to change the year.
    Do you have a solution ?

    Thank you

    I’m french sorry for my english.

    The page I need help with: [log in to see the link]

  • The topic ‘Display by month’ is closed to new replies.