Skip to content

Instantly share code, notes, and snippets.

@aranw
Created May 16, 2013 13:13
Show Gist options
  • Save aranw/5591612 to your computer and use it in GitHub Desktop.
Save aranw/5591612 to your computer and use it in GitHub Desktop.
<?php
if (perch_get('s')) {
$post = array(
'filter' => 'slug',
'sort-order' => 'DESC',
'count' => 1,
'template' => 'blog/listing.html'
);
} else {
$post = array(
'sort' => 'postDateTime',
'sort-order' => 'DESC',
'count' => 1,
'template' => 'blog/listing.html'
);
}
perch_blog_custom($post);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment