Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Created June 30, 2015 08:11
Show Gist options
  • Save bepatrickdavid/0dda7e65c8d3edee3154 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/0dda7e65c8d3edee3154 to your computer and use it in GitHub Desktop.
WP: Query with multiple post type limit to three item and order by date - Query diversi post type
<?php $any = get_posts( 'post_type[]=post&post_type[]=portfolio' ); ?>
<?php foreach(array_slice($any, 0, 3) as $a): ?>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment