WordPress
- 1 ответ
- 0 вопросов
0
Вклад в тег
$pages = get_pages();
foreach($pages as $post){ setup_postdata($post);
// здесь уже можно выводить все что угодно, в т.ч. и миниатюры через the_post_thumbnail, ссылку, название статьи. the_title, the_permalink
echo '<a href="'. get_the_premalink() .'">'. get_the_post_thumbnail($post->ID, 'thumbnail') . ' ' . get_the_title() .'</a>';
}
wp_reset_postdata();