Anam Hossain
Anam Hossain

Reputation: 87

How to get data from WordPress post object?

I am trying to get one of my WordPress post info. my code is

$xa = get_post( get_the_ID());
echo '<pre>';
    var_dump($xa);
echo '</pre>';

This code returns like this... http://postimg.org/image/p7pnvsnb3/ How can I get data form that indicated target which is in the link.

Upvotes: 0

Views: 998

Answers (2)

Prafulla Kumar Sahu
Prafulla Kumar Sahu

Reputation: 9693

Here you can use the_title() or you can echo get_the_title() .

echo get_the_title();

Upvotes: 0

Lucky Chingi
Lucky Chingi

Reputation: 2258

Here's the post title

echo $xa->post_title;

Upvotes: 3

Related Questions