Quote Originally Posted by umang360 View Post
Whoo,as u know d script displays last 40 Posts which includes Drafts also. can u do smthin which will show only Published posts?
Sure that can be done, didn't even know it had to be done till now:

Anyways:

Line 70, replace the following part, not the whole line:

PHP Code: 
WHERE post_type 'post' 
with:

PHP Code: 
WHERE post_type 'post' AND post_status 'published' 
That should fix it