Show only Orders of certain Status
-
i have filter for a certain user that i only want to see a certain order status.
Its not returning anything …where did i go wrong? thanks for any help.add_filter( 'pre_get_posts', 'show_only_certain_oder_status' ); function show_only_certain_oder_status( $query ) { $query->set( 'meta_key', '_post_status' ); $query->set( 'meta_query', array( array( 'key' => '_post_status', 'compare' => '=', 'value' => 'wc-completed', ) ) ); return $query; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show only Orders of certain Status’ is closed to new replies.