Get Post By ID

Gets a single post by ID…very useful

$mypost = get_post( $current_post_id );

$this_title       = $mypost->post_title;
$this_content     = $mypost->post_content;
$this_slug        = $mypost->post_name;
$this_author      = $mypost->post_author;
$this_string_date = $mypost->post_date;
$this_num_date    = $mypost->post_date_gmt;
Comments