is_dir($dir) ) { $wp_filesystem->delete($dir,true); } } } $allposts = get_posts( 'numberposts=-1&post_type=any&post_status=any' ); $period_name = array('all','yearly','monthly','weekly','daily'); foreach( $allposts as $postinfo ) { delete_post_meta( $postinfo->ID, '_simple_days_popular_posts_count'); delete_post_meta( $postinfo->ID, '_simple_days_popular_posts_period'); foreach ($period_name as $key) { delete_post_meta( $postinfo->ID, '_simple_days_popular_posts_count_'.$key); delete_post_meta( $postinfo->ID, '_simple_days_popular_posts_period_'.$key); } }