pagination on custom post wp_query

前端 未结 4 1827
轻奢々
轻奢々 2020-12-01 14:40


        
4条回答
  •  天涯浪人
    2020-12-01 15:25

    ';  
            if($result->have_posts())
            {
                while ($result->have_posts()) : $result->the_post(); 
                    echo '
    '; echo ''. get_the_date().'' ?>

    "; the_excerpt(); echo "

    "; echo '
    '; endwhile; ?>
    '; wp_reset_query(); }

提交回复
热议问题