SmashinGeeks | Geeks In Action

Posted by Orange Game 2011-04-29

SmashinGeeks | Geeks In Action

Link to SmashinGeeks

How to Display Most Commented Posts of the Month/Week in WordPress

Posted: 28 Apr 2011 02:46 AM PDT

While designing new theme for SmashinGeeks, we have come across a piece of code which allows you to display the most commented articles/posts withing a specific date, be it monthly or be it weekly. You can display it with ease with the following code.

What you have to do is simply copy the code below where you want to display the Most Commented Post of the Month, most probably in the sidebar widgets or content box.

<?php function filter_where($where = '') {  $where .= " AND post_date > '" . date('Y-m-d', strtotime('-7 days')) . "'";  return $where; } add_filter('posts_where', 'filter_where'); query_posts('post_type=post&posts_per_page=5&orderby=comment_count&order=DESC'); while (have_posts()): the_post(); ?> <li> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> <?php endwhile; wp_reset_query(); ?>

You can change the -30 days to -7 days to display Most Commented posts of the Week. The code for Most Commented Posts of the Week is.

<?php function filter_where($where = '') {  $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";  return $where; } add_filter('posts_where', 'filter_where'); query_posts('post_type=post&posts_per_page=5&orderby=comment_count&order=DESC'); while (have_posts()): the_post(); ?> <li> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> <?php endwhile; wp_reset_query(); ?>

Code Explanation

This is a very simple code, we have created a filter function which returns all the content of previous 30 days of your blog. then query starts which is ordered by Comment Count, so it will display Most commented Posts, and then we display the post title and the end the loop.

The Best Of: 10 Hummingbird HD Photographs

Posted: 28 Apr 2011 01:11 AM PDT

We have gathered collection of hummingbird’s top desktop wallpapers available in HD. These are viewed best in Desktops as resolutions of these wallpapers is much more. Bird photography is one of the best method to capture a Wallpaper for your desktop. You can click the Image to get a bigger view of the Photographs.

Download Bulb Social Bookmarking Icons Set

Posted: 27 Apr 2011 11:58 PM PDT

Deviantart is a great collection of artistic work including psds, social icons, vectors, customizations and much more. There are plenty of stuff there to get inspired for your next project. After launching the new theme for SmashinGeeks which is built on Thesis 1.8 WordPress theme, we have decided to give our readers a look of awesome Social Media Icon Set.

These Social Bookmarking Icon set includes icons of 9 popular social sites. Twitter, Yahoo, Technorati, Youtube and some more Icons are there and these icons are free to use as per the designer of the icons sargsyan .

0 komentar:

Posting Komentar

Search

Twitter updates