Posts being viewed
-
I am looking for a way to list posts being viewed but I can’t find anything online.
Is it even possible? I’ve seen some websites that have these loops, “What other readers are currently reading”.
I’m using the following loop to list random set of videos
<?php if ( is_home() ){ $cat = get_query_var( 'cat' ); query_posts(array('orderby' => 'rand', 'showposts' => 10, 'cat'=>$cat)); } while (have_posts()) : the_post(); ?>
How can I show posts being viewed? anyone
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Posts being viewed’ is closed to new replies.