Skip to content

Instantly share code, notes, and snippets.

@jmsmrgn
Created January 24, 2016 00:43
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 jmsmrgn/9d67549eb1aa5a99dfaf to your computer and use it in GitHub Desktop.
Save jmsmrgn/9d67549eb1aa5a99dfaf to your computer and use it in GitHub Desktop.
WP - Blog view conditional check
/**
* Blog view conditional check
*/
function is_blog() {
return (is_author() || is_category() || is_tag() || is_date() || is_home() || is_single()) && 'post' == get_post_type();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment