Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BBPress Posts on another page.

$sql="SELECT * FROM bb_posts WHERE post_topic='' ORDER BY post_id DESC LIMIT 8";

It seem like you telling the script to look for post with empty topic. Try change it to this:

$sql="SELECT * FROM bb_posts ORDER BY post_id DESC LIMIT 8";

Skip to toolbar