Last active
May 1, 2025 05:05
-
-
Save chikaibeneme/6e394a7cc6af848273603c25d81e1ae4 to your computer and use it in GitHub Desktop.
delete_all_test_ticket_orders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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