ohshhitscarl
Forum Replies Created
-
Forum: Plugins
In reply to: Customizable Post Listing Working with 2.1?Romik84, if you give me the function name you’re trying to use, I’d be more than happy to analyze and correct the code 🙂
Forum: Plugins
In reply to: Customizable Post Listing Working with 2.1?The following should fix the problem with the function “c2c_get_recent_posts” that it displays Pages as posts. I haven’t really noticed any other problems besides this. And checking the code, there should be no other problems.
Line 61 should read:
$sql .= "WHERE $tableposts.post_date <= '$now' AND ( $tableposts.post_status = 'publish' ";Replace Line 61 with:
$sql .= "WHERE $tableposts.post_date <= '$now' AND $tableposts.post_type = 'post' AND ( $tableposts.post_status = 'publish' ";Update and it should be working 🙂
Forum: Plugins
In reply to: Customizable Post Listing Working with 2.1?I actually just modified the plug-in itself using the built-in plug-in editor. It was pretty simple after reading a post someone made about the new “post_type” database entry utilized in 2.1.
I don’t know if it’s allowed or not but if you’d like I can post which lines needed to be modified and what needs to be added.
Forum: Plugins
In reply to: Customizable Post Listings Showing PagesThank you for your replies!
I think I can modify the script myself now reading transycan.net’s post 🙂Forum: Fixing WordPress
In reply to: RSS Feed isn’t working anymorefeed is working for me?