Looking for a Wordpress plugin...

Status
Not open for further replies.

RockDiesel

New member
Nov 29, 2007
1,419
16
0
I was wondering if there is a Wordpress plugin that allows you to choose number of posts to display in each category?

I have a phpBay blog and would like to display only one auction post in a category, but I also have a category for content to, hopefully, increase SERPS and would like to display multiple posts in that one.
 


A quick google search gave me this. Which links to this.
Specifically
double woohoo.. A quick look at the database description for wp and…
I modified the ORDER statement to read
$get_posts_in_cat .= “ORDER BY $wpdb->posts.post_date DESC “;
and added this after the order statement.
$get_posts_in_cat .= “LIMIT 10″;
and
$get_posts_in_cat .= “LIMIT 10″; works perfect for limiting, but I have no way of making the most recent posts display.
$get_posts_in_cat .= “ORDER BY $wpdb->posts.post_date DESC “; generates errors.

Lesson? JUST FUCKING GOOGLE IT
 
Lesson? JUST FUCKING GOOGLE IT


I could have googled it, but I was getting ready to leave and run an errand. I just made this quick post hoping a good samaritan like you would help me out. Sure enough, I come back to see that you were nice enough to point me in the right direction.
 
Status
Not open for further replies.