Created
November 26, 2012 09:40
-
-
Save bastianallgeier/4147413 to your computer and use it in GitHub Desktop.
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 | |
$blogs = $pages->findByUID('blog1', 'blog2'); | |
$articles = $blogs->children()->sortBy('date', 'desc'); | |
// if you want you can add a limit or pagination to that set of articles | |
// afterwards just use a regular foreach loop to go through them all. | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment