Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuelhudec/24ce305b5470bdb884741089bd680c7b to your computer and use it in GitHub Desktop.
Save manuelhudec/24ce305b5470bdb884741089bd680c7b to your computer and use it in GitHub Desktop.
WooCommerce - Show out of stock products in archives last
add_action( 'woocommerce_product_query', 'out_of_stock_last', 999 );
function out_of_stock_last( $query ) {
if ( is_admin() ) return;
$query->set( 'meta_key', '_stock_status' );
$query->set( 'orderby', array( 'meta_value' => 'ASC' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment