So I can't seem to understand why I can't return my array
Call to the function
<?php
$args = array( 'post_type' => 'product',
'stock' => 1,
'posts_per_page' => 12,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num' );
productsLoop($args);
?>
The function located in functions.php
function productsLoop($args){
$post_ids = array();
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
$post_ids[] = get_the_ID();
endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_query();
return $post_ids;
}
Then on the original page I use the $post_ids in a for each loop, however it returns the error of undefined varibale