php WordPress - 自定义循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress - 自定义循环相关的知识,希望对你有一定的参考价值。

<?php $the_query = new WP_Query( ); ?>
 
  // Start our WP Query
  <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
   
  // Display the Post Title with Hyperlink
  <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
   
  // Display the Post Excerpt
  <?php the_excerpt(__('(more…)')); ?>
   
  // Repeat the process and reset once it hits the limit
  <?php endwhile; wp_reset_postdata();
?>

以上是关于php WordPress - 自定义循环的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress - 自定义帖子类型循环

php WordPress - 自定义帖子类型循环

php WordPress - 自定义循环

PHP 循环外的Wordpress自定义字段

PHP Wordpress - 自定义循环

PHP Wordpress自定义循环与分页