-1, 'Day' => 1, 'Week' => 7, 'Month' => 30, 'Year' => 365 ); $post_types = get_post_types( array( '_builtin' => false ), 'names' ); $post_types['post'] = 'post'; $args = array( 'numberposts' => -1, 'post_type' => $post_types, 'post_status' => 'publish' ); $allposts = get_posts( $args ); foreach( $allposts as $post) { foreach ( $interval as $key => $value ) { if ( $key == 'Unlimited' ) { delete_post_meta( $post->ID, 'jetpack-post-views' ); } else { delete_post_meta( $post->ID, 'jetpack-post-views-'.$key ); } } }