get post data outside the loop but without post ID
-
Hi guys, I have the single.php file shown as homepage and I show one post per page. Now, I need to get the post data outside the loop, and place them in the footer. I already do it with a small function and this code
<?php $data = get_post_data(1); echo $data[0]->post_date; //Print post date ?>
but I need to do the same thing, without knowing the ID because I need to do it in every single post page. To put it simple: I just need to extract the date and the categories of the post displayed in the current page, and put them in the footer. Do you know how I can do it? Really thanks in advance for your help ??
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘get post data outside the loop but without post ID’ is closed to new replies.