Advertisement
Guest User

Untitled

a guest
Sep 21st, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <ul>
  2.     <?php
  3.     global $post;
  4.  
  5.     // записываем $post во временную переменную $tmp_post
  6.     $tmp_post = $post;
  7.     $args = array( 'posts_per_page' => 5, 'offset'=> 1, 'category_name' => 'seo' );
  8.     $myposts = get_posts( $args );
  9.     foreach( $myposts as $post ){ setup_postdata($post);
  10.         ?>
  11.         <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  12.         <?php
  13.     }
  14.  
  15.     // возвращаем былое значение $post
  16.     $post = $tmp_post;
  17.     ?>
  18. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement