Advertisement
goodjacky

Untitled

Feb 22nd, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // задаем нужные нам критерии выборки данных из БД
  2. $post__in=array(306,242,296,572);
  3. $args = array(
  4. 'post__in' => $post_id, // id постов
  5. );
  6.  
  7. $query = new WP_Query( $args );
  8. $output = '';//обнуляем переменную
  9. // Цикл
  10. if ( $query->have_posts() ) {
  11. while ( $query->have_posts() ) {
  12. $query->the_post();
  13. //$output .= '<li style="display: inline;">' . get_the_title() . '</li>';
  14.  
  15. $output .= '<li style="display: inline;"><a href="'.get_permalink().'">' . get_the_title() . '</a></li>';
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement