Skip to content

Instantly share code, notes, and snippets.

@chikaibeneme
Last active May 1, 2025 05:05
Show Gist options
  • Select an option

  • Save chikaibeneme/6e394a7cc6af848273603c25d81e1ae4 to your computer and use it in GitHub Desktop.

Select an option

Save chikaibeneme/6e394a7cc6af848273603c25d81e1ae4 to your computer and use it in GitHub Desktop.
delete_all_test_ticket_orders
function delete_all_test_ticket_orders() {
if ( current_user_can('manage_options') ) {
$orders = get_posts([
'post_type' => 'tec_tc_order',
'posts_per_page' => -1,
'post_status' => 'any',
]);
foreach ( $orders as $order ) {
wp_delete_post( $order->ID, true ); // true = permanently delete
}
echo count($orders) . " test ticket orders deleted.";
exit;
}
}
add_action('admin_init', 'delete_all_test_ticket_orders');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment