Insert Page image and title to a widget
-
I am using the WordPress 2014 template with a child theme.
I want to add some blocks at the bottom of my site with the image and title of other pages to link to.I have created a dynamic sidebar to add widgets and need the code to add to my text widget to display the Thumbnail and Title of the page which has an ID of 80.
I got the below code from Codex but it is showing blank, any ideas?!<?php
$pageID = 80;
$page = get_post($pageID);
echo $page->post_title;
?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Insert Page image and title to a widget’ is closed to new replies.