Random Post, Max Character Length
-
I’m trying to show a random posts on a page, but want to only show a random post that is under 180 characters. So far, I have the query below… can someone help with the character limit?
<?php $args = array('numberposts' => 1, 'orderby' => 'rand'); query_posts($args); while (have_posts()) : the_post(); the_content('Read the full post ?'); // And so forth… endwhile; ?>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Random Post, Max Character Length’ is closed to new replies.