Skip to content

Instantly share code, notes, and snippets.

View camilolunacom's full-sized avatar

Camilo Luna camilolunacom

View GitHub Profile
<?php
function productos_nuevos_shortcode() {
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'orderby' => 'menu_order',
'meta_key' => 'nuevo',
'meta_value' => '1'
);
$loop = new WP_Query( $args );