Last active
July 21, 2016 06:09
-
-
Save kirandash/e51d1b660ddfdb5451ed644c9d28da78 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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