php 兄弟姐妹

Posted

tags:

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

<?php
       $post= get_the_category()[0]->term_id;
       $args = array(
            'posts_per_page' => 5,
            'cat' => $post,
            'orderby' => 'rand',
            'title_li' => null
        );
        $posts_array = get_posts( $args );
        foreach($posts_array as $title){
            echo '<li><a href="'.get_permalink($title->ID).'" class="">'.$title->post_title.'</a></li>';
        }
?>
<?php
     wp_list_categories(array(
        'child_of' => $post->post_parent,
        'exclude' => $post->ID,
        'title_li' => __(''),
        'depth' => 1, // pour selectionner que les pages parents
    ))
?> 
// Avec un ACF

<section class="siblings">
  <?php
      $parentid = $post->post_parent;
      $this_post = $post->ID;

      $args = array(
          'post_type' => 'page',
          'post_status' => 'publish',
          'posts_per_page' => -1,
          'post_parent' => $parentid,
          'post__not_in' => array($this_post),
      );
      $query = new WP_Query($args);
      while ($query->have_posts()) {
          $query->the_post();
          ?>
          <div class="wrapper_siblings">
              <a class="link" href="<?php the_permalink(); ?>"></a>
              <p class="title_siblings"><?php the_title();?></p>
              <div class="bg_siblings" style="background-image: url(<?php the_field('image_left', $post->ID); ?>);" ></div>  
          </div>

          <?php 
      }
      wp_reset_postdata();

  ?>
</section>

以上是关于php 兄弟姐妹的主要内容,如果未能解决你的问题,请参考以下文章

php 显示CPT的兄弟姐妹

php 显示当前菜单父母当前页面的孩子/兄弟姐妹

PHP Wordpress显示子页面和兄弟姐妹的列表,如果有的话

php 而不是列出当前页面的所有子孙的wp_list_pages,此方法列出了父页面,兄弟姐妹

哪位兄弟姐妹怎么在SAP/ABAP的表BKPF中增加自定义字段怎么做

如果有兄弟姐妹,则 jquery 兄弟姐妹()似乎包括选择器,但如果没有,则不包括