2017-07-10 25 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