如何用逗号列出我的所有帖子(但不要在最后一篇帖子之后)。。。
<?php
// WP_Query arguments
$args = array(
\'post_type\' => array( \'post\' ),
\'tax_query\' => array(
array (
\'taxonomy\' => \'day_time\',
\'field\' => \'slug\',
\'terms\' => \'mon-night\')),
\'post_status\' => array( \'publish\' ),
\'nopaging\' => false,
\'posts_per_page\' => \'20\',
\'ignore_sticky_posts\' => true,
\'order\' => \'DESC\',
\'separater\' => \', \',
\'orderby\' => \'modified\',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post(); ?>
<?php the_title(); ?>
<?php }
} else { ?>
<?php }
// Restore original Post Data
wp_reset_postdata();
?>
<?php } else { ?>
<?php } ?>