Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Last active March 21, 2017 20:04
Show Gist options
  • Save marcosnakamine/40c735cc3fb8d250e8c0ec74335dded6 to your computer and use it in GitHub Desktop.
Save marcosnakamine/40c735cc3fb8d250e8c0ec74335dded6 to your computer and use it in GitHub Desktop.
WooCommerce - Get all featured products
<?php
$featured_products = new WP_Query( array(
'post_type' => 'product',
'meta_key' => '_featured',
'meta_value' => 'yes',
'posts_per_page' => -1
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment