S
S
sergiocharm2020-04-16 13:45:05
WordPress
sergiocharm, 2020-04-16 13:45:05

How to display 3 photos from an article instead of a thumbnail?

Under the article I want to display 5 similar articles with a description. And in them, display not a thumbnail, but 3 photos from each article.
Can you tell me what code can do this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
W
WP Panda, 2020-04-16
@wppanda5

function get_3_first_attach( $post_ID ) {

  
  $items = get_posts( [
    'post_type'      => 'attachment',
    'posts_per_page' => 3,
    'post_parent'    => $post_ID
  ] );

  return !empty($items) ? $items : false;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question