Skip to content

Instantly share code, notes, and snippets.

@clivewalker
Created June 28, 2018 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clivewalker/f792ef460972959832246006c2959be9 to your computer and use it in GitHub Desktop.
Save clivewalker/f792ef460972959832246006c2959be9 to your computer and use it in GitHub Desktop.
Using layouts in Perch
<?php
if (perch_layout_has('blog-post')) {
perch_blog_post_meta(perch_get('s'));
perch_page_attributes();
}else{
echo '<title>' . perch_pages_title(true) . '</title>';
perch_page_attributes();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment