gjhead
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Export Spam Entries?The main argument I would make is that more than half of the entries dumping into the “spam” folder are NOT spam. And there is no documentation anywhere as to how CF7 or this plugin decide to mark something as spam in the first place.
Forum: Plugins
In reply to: [Flamingo] New Messages marked as spamSame issue – also wondering if there is a way I can manually export all the spam entries. The “Export” option disappears on the “Spam” listing.
Also, terribly baffled as to how it marks something as spam in the first place.
Forum: Plugins
In reply to: [Custom Post Type UI] 0.9.0 Links All Gone :(Sure! I have a dev site that I have that I would be happy to copy over and test out for you. I may not be able to get to this until tomorrow morning (i’m on the east-coast, US). But sure – let me know what i can do to help.
Forum: Plugins
In reply to: [Custom Post Type UI] 0.9.0 Links All Gone :(I refreshed the permalinks and it didn’t seem to help at all. I also went through all of my custom post types and custom taxonomies and re-saved them/reviewed the settings and that did not help either.
Luckily I updated this on a dev site, so i reverted back to my previous database and previous plugin and everything is fixed now.
Forum: Plugins
In reply to: Posts by Post Date – Please Read!I got it. Here’s the final code:
<?php $latest = $wpdb->get_var("SELECT post_date FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_date DESC LIMIT 1"); $latest = str_replace('-', '', substr($latest, 0, 10)); // echo $latest; query_posts('m=' . $latest . '&showposts=-1'); $wp_query->is_archive = false; $wp_query->is_home = true; ?>