Created
June 28, 2021 06:58
-
-
Save cpaul007/e4667c5753ec9bc900e6bb751fb7640e to your computer and use it in GitHub Desktop.
Get on sale product IDs for Repeater
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 | |
/** | |
* 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