現在、Wordpress Plugin [Event Post Type]を使用しており、投稿は現在投稿順に並べられています。私は実際にプラグインが私のためのポストタイプに追加するイベントの日付順にそれらを必要とします。Wordpress [Plugin:Event Post Type]投稿する代わりにイベントの日付で投稿を手配するには?
私は現在、このコードを使用して、それを注文する取得する方法を確認していないのです。
<div id="events-teaser"><?php
$args = array('post_type' => 'event', 'posts_per_page' => 10, 'orderby' => '_date_start', 'order' => 'DESC');
$loop = new WP_Query($args);
if (have_posts()) : while ($loop->have_posts()) : $loop->the_post();?>
<div class="teaser-event <?php echo do_shortcode('[xydac_field]promo[/xydac_field]'); ?>">
<div class="event-meta gold">
<div class="event-date"><?php echo get_post_meta($post->ID, "_date_start", true); ?></div>
<div class="event-time"><?php echo get_post_meta($post->ID, "_time_start", true); ?></div></div>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><div class="event-title"><?php the_title(); ?></a></div></div><?php
endwhile; else:
?><p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
これは何も変えていないようです。:( – Reuben
私はこれを組み込む方法を知っていれば。 – Reuben