marcelbrown on "[Plugin: FeedPress] What triggers Feedpress ping?"
I run a blog where I post daily items based on the day in history (http://thisdayintechhistory.com). I like to refresh the posts for each day by updating the posts with the currently year so that the...
View Articlemarcelbrown on "[Plugin: FeedPress] What triggers Feedpress ping?"
Update: I also added this mysql command INSERT INTO wp_postmeta (post_id,meta_key,meta_value) SELECT id,'_pingme','1' FROM wp_posts WHERE MONTH( post_date ) = MONTH( CURDATE( ) ) AND DAYOFMONTH(...
View Articlemaximevalette on "[Plugin: FeedPress] What triggers Feedpress ping?"
Hi Marcel, Thanks for your interest in FeedPress! If you do raw MySQL requests WordPress can't trigger the events. Instead of the MySQL request you may take a look at the wp_update_post function. You...
View Articlemarcelbrown on "[Plugin: FeedPress] What triggers Feedpress ping?"
I figured out a way to do this with a combination of SQL statements and some PHP code. I'll post the details soon. Thanks!
View Articlemarcelbrown on "[Plugin: FeedPress] What triggers Feedpress ping?"
I blogged about this little project here. I mention FeedPress in it extensively. http://solotechpros.com/2013/08/02/automate-recycling-wordpress-posts-on-a-yearly-basis/ I wouldn't mind someone looking...
View ArticleReply To: What triggers Feedpress ping?
I blogged about this little project here. I mention FeedPress in it extensively. http://solotechpros.com/2013/08/02/automate-recycling-wordpress-posts-on-a-yearly-basis/ I wouldn’t mind someone...
View ArticleReply To: What triggers Feedpress ping?
I figured out a way to do this with a combination of SQL statements and some PHP code. I’ll post the details soon. Thanks!
View ArticleReply To: What triggers Feedpress ping?
Hi Marcel, Thanks for your interest in FeedPress! If you do raw MySQL requests WordPress can’t trigger the events. Instead of the MySQL request you may take a look at the wp_update_post function. You...
View ArticleReply To: What triggers Feedpress ping?
Update: I also added this mysql command INSERT INTO wp_postmeta (post_id,meta_key,meta_value) SELECT id,'_pingme','1' FROM wp_posts WHERE MONTH( post_date ) = MONTH( CURDATE( ) ) AND DAYOFMONTH(...
View Article