mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
15 lines
344 B
Text
15 lines
344 B
Text
// Get downloadable products
|
|
$product_ids = get_posts( array(
|
|
'post_type' => 'product',
|
|
'numberposts' => -1,
|
|
'post_status' => 'publish',
|
|
'fields' => 'ids',
|
|
'meta_query' => array( array(
|
|
'key' => '_downloadable',
|
|
'value' => 'yes',
|
|
'compare' => '=',
|
|
)),
|
|
));
|
|
|
|
// Print array on screen
|
|
print_r( $product_ids );
|