Skip to content

Instantly share code, notes, and snippets.

@theStreets93
Last active November 10, 2015 10:46
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 theStreets93/7a0454552854410855ff to your computer and use it in GitHub Desktop.
Save theStreets93/7a0454552854410855ff to your computer and use it in GitHub Desktop.
Wordpress - If page id or home page
<?php if (is_page('page_ID_or_SLUG')): /* if wp page what you want, get content */ endif; ?>
<?php if(is_home()): /* if wp home get content */ endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment