문제

I'm getting a thumbnail like this in Wordpress:

<?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>

Now there is 'thumbnail' size but also 'medium', 'large' and 'full'.

How do I get the php code to display these size random? So sometimes there 'small' then 'thumbnail' and then 'full'.

도움이 되었습니까?

해결책

Haven't tested, but something like this should work (assuming I've understood your question):

<?php
$sizes = array('thumbnail', 'medium', 'large', 'full');
$index = array_rand($sizes);
echo get_the_post_thumbnail($page->ID, $sizes[$index]);
?>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top