活动组织者日期循环

时间:2015-11-12 15:48:24

标签: wordpress loops events

我正在将WordPress与WP Events Organizer结合使用。在我的index.php上,我想在同一个循环中显示事件和帖子,但只有" startseite"应显示事件和帖子。目前它的工作方式如下:

<?php global $wp_query;
$args = array(
'post_type' => array('post','event'),

'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'terms' => 'startseite',
'field' => 'slug'
),
array(
'taxonomy' => 'event-category',
'terms' => 'startseite',
'field' => 'slug'),
));
query_posts( $args ); ?>


<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

...进一步循环:

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <article class="d-1of3" id="post-<?php the_ID(); ?>" <?php post_class( 'cf' ); ?> role="article">
        <div class="entry-content">
            <h2 class="h2 entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
            <p class="byline entry-meta vcard">
              <?php printf( __( '', 'bonestheme' ).' %1$s',
              '<time class="updated entry-time" datetime="' . get_the_time('Y-m-d') . '" itemprop="datePublished">' . get_the_time(get_option('date_format')) . '</time>'                            
              ); ?>
            </p>
            <section class="cf">
                <?php the_content(); ?>

                <?php echo eo_get_the_start('jS M YY'); ?>
            </section>
        </div>

        <?php the_post_thumbnail( 'large' ); ?> 

    </article>
    <?php endwhile; endif; ?>

现在我想显示活动的日期。我在以下示例中找到了以下链接:http://codex.wp-event-organiser.com/function-eo_get_events.html

但我无法弄清楚如何更改我的代码以显示日期。而且按日期订购活动也很棒。谢谢你的帮助!!

1 个答案:

答案 0 :(得分:0)

只需查看文档in here

基本上你加上这个:

echo eo_get_the_start('jS M YY');

您需要显示日期的地方。