Как я могу установить максимальное количество раз, которое цикл выдает (я пробовал с циклом while, но он не работал)?
function show_random_thumbs() {
$args = array(
'orderby' => 'rand',
'post_type' => 'attachment',
'post_parent' => null,
'post_mime_type' => 'image',
'post_status' => 'published',
'numberposts' => -1,
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
echo '<a href="';
echo get_permalink($attachment->post_parent);
echo '" title="';
echo get_the_title($attachment->post_parent);
echo '">';
$title = get_the_title($attachment->post_parent);
echo wp_get_attachment_image($attachment->ID, 'thumbnail', false, array('title' => $title) );
echo '</a>';
}
}
}