Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save onwp/41f4b5630b271e61e7c69b78df6a7b88 to your computer and use it in GitHub Desktop.
Save onwp/41f4b5630b271e61e7c69b78df6a7b88 to your computer and use it in GitHub Desktop.
Delete learndash user infos after a certain date
<?php
define( 'WP_USE_THEMES', false );
require( 'wp-blog-header.php' );
$usermeta = get_user_meta( 354, '_sfwd-quizzes', true );
$new = array();
foreach ($usermeta as $key => $value) {
if ( $value['time'] < 1476545002 )
array_push($new, $value);
}
update_user_meta( 354, '_sfwd-quizzes', $new);
d($new);
ddd( $usermeta );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment