Skip to content

Instantly share code, notes, and snippets.

@kirandash
Last active July 21, 2016 06:09
Show Gist options
  • Save kirandash/e51d1b660ddfdb5451ed644c9d28da78 to your computer and use it in GitHub Desktop.
Save kirandash/e51d1b660ddfdb5451ed644c9d28da78 to your computer and use it in GitHub Desktop.
//Get page title with ID
$pageID = 26;
$page = get_post($pageID);
echo $page->post_title;
echo $page->post_content;
//Get page thumbnail with ID
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id('26'), 'post');
echo $thumb[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment