php WP_Query和get_posts

Posted

tags:

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

//get_posts();
<div>
              <?php
                  $args = [
                    'post_type' => 'business_sercvice',
                    'posts_per_page' => 3,
                    //'offset' => 3, //- после какого поста выводить 
                    'order' => 'ASC'
                  ]; 
                  $custom_posts = get_posts( $args ); ?>
                  <?php foreach( $custom_posts as $post ) : setup_postdata($post); ?>
                      <div class="grid_4">
                         <?php the_post_thumbnail(); ?>
                         <h3><?php the_title(); ?></h3>
                         <?php the_content(); ?>
                         <a href="<?php the_permalink(); ?>" class="btn">Read more</a>
                      </div>
                  <?php endforeach; wp_reset_postdata(); ?>
              </div>

//WP_Query();
<?php
                $args = [
                  'post_type' => 'business_sercvice',
                  'posts_per_page' => 3,
                  //'offset' => 3, - после какого поста выводить 
                  'order' => 'ASC'
                ];
                $query1 = new WP_Query($args);
               
                if($query1->have_posts()){
 
                  while($query1->have_posts()){
                    $query1->the_post(); ?>
                   <div class="grid_4">
                     <?php the_post_thumbnail(); ?>
                     <h3><?php the_title(); ?></h3>
                     <?php the_content(); ?>
                     <a href="<?php the_permalink(); ?>" class="btn">Read more</a>
                     <br><br>
                   </div>
                  <?php  }
                   wp_reset_postdata(); 
                }
 
                 else echo 'Записей нет.';
              ?>

以上是关于php WP_Query和get_posts的主要内容,如果未能解决你的问题,请参考以下文章

php get_posts

php get_posts

php Wordpress Bootstrap 4.1分页(使用自定义WP_Query()和全局$ wp_query支持)

php Wordpress Bootstrap 4.1分页(使用自定义WP_Query()和全局$ wp_query支持)

php 切换到Blog和WP_Query示例

php 您可能希望扩展WP_Query类的方式和原因的实际示例。