Skip to content

Instantly share code, notes, and snippets.

@cpaul007
Created June 28, 2021 06:58
Show Gist options
  • Save cpaul007/e4667c5753ec9bc900e6bb751fb7640e to your computer and use it in GitHub Desktop.
Save cpaul007/e4667c5753ec9bc900e6bb751fb7640e to your computer and use it in GitHub Desktop.
Get on sale product IDs for Repeater
<?php
/**
* Getting on sale product ids
* @use wc_get_product_ids_on_sale function
* return string
*/
function ouwoo_wc_get_product_ids_on_sale() {
return implode( ",", (array) wc_get_product_ids_on_sale() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment