Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@clivewalker
Last active December 6, 2017 08:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clivewalker/0dccfe01a034b09d2c866da255b87e43 to your computer and use it in GitHub Desktop.
Save clivewalker/0dccfe01a034b09d2c866da255b87e43 to your computer and use it in GitHub Desktop.
Showing a blog post excerpt that isn't the current post in a sidebar using Perch CMS. Use this on your post page.
<?php
perch_blog_custom(array(
'filter' => 'postSlug',
'match' => 'neq',
'value' => perch_get('s'),
'sort'=>'postDateTime',
'sort-order'=>'DESC',
'count'=>1,
'template'=>'blog/post_in_list_sidebar.html'
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment