• Hello,
    I installed a very nice Theme, Cofee Desk 2.0 and I ended with errors at the bottom of the page gave me the error below. I like the layout so much, I will put up with it until it is resolved.

    We are running a hosted Word press at – EricKirkhuff

    Has anyone had this issue?

    Random Selection of PostsWordPress database error: [Unknown column ‘rand’ in ‘order clause’]
    SELECT DISTINCT * FROM wp_posts WHERE 1=1 AND post_type = ‘post’ AND post_status = ‘publish’ GROUP BY wp_posts.ID ORDER BY rand DESC LIMIT 0,7

Viewing 1 replies (of 1 total)
  • This code should be in your footer.php Check if you have any missing characters or text

    <div class="right_footer">
    <ul><li><h2>Random Selection of Posts</h2>
     <ul>
     <?php
     $rand_posts = get_posts('numberposts=7&orderby=rand');
     foreach( $rand_posts as $post ) :
     ?>
     <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
     <?php endforeach; ?>
     </ul>
     </li></ul>
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Theme Error at footer coffee desk Roam To Rome’ is closed to new replies.