Random Post in AMP
-
Hi,
Need help on how to get random post in AMP (Accelerated Mobile Pages). As for regular pages, below script works for me, but it doesn’t work on AMP.
<h3>Title</h3> <ul> <?php $posts = get_posts('orderby=rand&numberposts=3'); foreach($posts as $post) { ?> <li><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a> </li> <?php } ?> </ul>
Thanks in advance,
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Random Post in AMP’ is closed to new replies.