
I'm working on an interesting online image-dictionary project (http://phut59.com), and I want to have random word on the index page. After a few searches I did it by adding a php code in function bfa_loop() in template_tags.php to query random posts.
Code:
function bfa_loop( $postformat = 'postformat' ) { query_posts($query_string . '&orderby=rand'); <!-- here is the code i added --> if( have_posts() ) : ?> <div class="post-list"> <?php while (have_posts()) : the_post(); ?> <?php bfa_get_template_part( $postformat, get_post_format() ); ?> <?php endwhile; ?> </div> ...
Code:
function bfa_loop_norandom( $postformat = 'postformat' ) { if( have_posts() ) : ?> <div class="post-list"> <?php while (have_posts()) : the_post(); ?> <?php bfa_get_template_part( $postformat, get_post_format() ); ?> <?php endwhile; ?> </div> ...
Code:
<!--<div id="container">--> <?php get_header(); ?> <div id="main" class="row"> <div id="content" class="cf col8"> <?php bfa_loop_norandom( 'postformat' ); ?> </div> <div id="widgetarea-one" class="col4"> <?php dynamic_sidebar( 'Widget Area ONE' ); ?> </div> </div> <?php get_footer(); ?> <!--</div>-->
I wonder if someone can help.
Thanks in advance
