Get Post Title Outside “The Loop”

Getting individual post data outside the loop can be difficult, but you can quickly get the information you want if you have the id of the post you are trying to get information from:

Use the following code to get the information:

global $wpdb;
$postid='1'; // replace this with the postid you are trying to access.
$postdata= $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE ID=$postid");

To access and use the data is equally easy, here are some examples to get you started:

echo $postdata->post_title; //The title of the post
echo $postdata->post_content; //The content of the post

There is other useful information you can grab via this method:

  • post_author
  • post_date
  • post_date_gmt
  • post_content
  • post_title
  • post_category
  • post_excerpt
  • post_status,
  • comment_status
  • ping_status
  • post_password
  • post_name
  • to_ping
  • pinged
  • post_modified
  • post_modified_gmt
  • post_content_filtered
  • post_parent
  • guid
  • menu_order
  • post_type
  • post_mime_type
  • comment_count
  1. This is actually not the best method for this. Much better is to use WordPress function:

    $postdata = get_post($postid);

    This function uses internal WordPress object cache, and if the post you need is already in the cache you save on running unneeded query. Object is the same as with your method and all returned properties the same.
    .-= Milan Petrovic´s last blog ..New website res4WP.com =-.

    • myWordPress says:

      Hi Milan

      Thank you for that function! That does indeed make it a lot easier, and as you say, if its already in the cache it is much faster. In cases where a lot of posts could be queried it would be good.

      One note however, if in cases where you are only interested in for instance the title of a range of posts, would it not be faster to use my original query solution, modified to only return the title from the database, or would get_post() still be better/faster?

      Thank you for adding valuable insights to my ramblings! :-)

      • If the post is already cached it will be faster to use get_post, also get_post will cache post if it is not already. Also, such simple queries are fast do execute. But I try to avoid such coding because it is easier to do, but later is much more complicated to change and clean up.

        Since I spend a lot of time optimizing GD Star Rating plugin and adding various caching methods, I have measured all kinds of things, and the conclusion is that the best thing is to have less DB queries. They are very fast, but take into the account total number of queries executed, and it’s best to find the way to minimize that. GD Star Rating pre 1.5 versions needed some 150 queries for 10 posts because it was executing queries as they were needed. Now it needs less then 10 queries for the same 10 posts.
        .-= Milan Petrovic´s last blog ..New website res4WP.com =-.

  2. Dave L says:

    I am sorry but what is this supposed to do? “outside the loop” of what exactly?

PRIVACY POLICY: Your privacy is important to us. We will never sell or rent your email address and you can unsubscribe at any time.

If you check the check-box above and leave a comment, you will sign up to our newsletter, but do not worry, we only send out very few e-mails. We usually only send you an e-mail when we launch a new product, want to touch base with our e-mail readers or we have found a really really cool product we want to tell you about.

line
footer
Powered by Wordpress | Designed by Elegant Themes