Wordpress:如何自动删除包含特定内容的帖子

时间:2013-03-12 09:39:09

标签: php cron wordpress-plugin wordpress

我想用WP-Crontrol自动删除具有特定内容的Wordpress帖子(或者我还不知道更好的解决方案)。 我添加了以下cron作业,但它没有做任何事情:

global $wpdb;
$result = $wpdb->get_results( "SELECT ID FROM wp_posts WHERE post_content LIKE 'Content which should result in a deletion of this post'" );
  if ($result){
    foreach($result as $pageThing){
      wp_delete_post($pageThing);
    }
  }

我怎样才能让它发挥作用? 感谢

http://wordpress.org/extend/plugins/wp-crontrol/

1 个答案:

答案 0 :(得分:0)

您需要在cron脚本顶部require_once('absolute-path/wp-load.php')然后运行您的脚本。你现在应该工作。