Created
June 30, 2015 08:11
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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