2017-07-10 24 views

回答

0

别介意家伙,我只是固定我的问题通过使用此下面的代码:

<?php 
        query_posts(array('post_type'=>'video_section','posts_per_page'=>'3','order'=>'ASC')); 
        while(have_posts()) : the_post(); 
       ?> 
       <p> 
        <span><?php echo the_time("m/d/Y") ?> </span> 
       </p> 
       <h4><?php the_title(); ?></h4> 
       <?php 
        endwhile; 
        wp_reset_query(); 
       ?> 

Here is the result