Skip to content

Instantly share code, notes, and snippets.

@andreasnymark
Last active August 29, 2015 14:11
Show Gist options
  • Save andreasnymark/0526ac1b26112a2f5f88 to your computer and use it in GitHub Desktop.
Save andreasnymark/0526ac1b26112a2f5f88 to your computer and use it in GitHub Desktop.
GetKirby : Filter post by language
// All posts, filter by language
$posts = $page->children()
->visible()
->flip()
->filter( function( $child ) {
$site = site();
$inv = $child->inventory();
if ( array_key_exists( $site->language->code(), $inv[ 'content' ] )) {
return $child;
}
})
->paginate( $each );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment