Created
May 22, 2020 13:45
-
-
Save jchristopher/147236fdf002c090954636b60458760c to your computer and use it in GitHub Desktop.
Add WooCommerce Orders as a SearchWP Source.
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
<?php | |
// Add WooCommerce Orders as a SearchWP Source. | |
// @link https://searchwp.com/documentation/knowledge-base/search-woocommerce-orders/ | |
add_action( 'plugins_loaded', function() { | |
add_filter( 'searchwp\sources', function( $sources ) { | |
$sources[] = new \SearchWP\Sources\Post( 'shop_order' ); | |
return $sources; | |
} ); | |
add_filter( 'searchwp\post_stati\shop_order', function( $post_stati ) { | |
return array_merge( $post_stati, [ | |
'wc-pending', | |
'wc-processing', | |
'wc-on-hold', | |
'wc-completed', | |
'wc-cancelled', | |
'wc-refunded', | |
'wc-failed', | |
] ); | |
} ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
shop_order
is unknown post type. This return an error.