script mengambil salah satu post wordpress

Dibawah ini adalah Script PHP untuk mengabil salah satu postingan dari database :

$page_object = get_page( 1); //1=post id
echo $page_object->post_content

//ambil judul artikel
get_the_title(1) //1=post id

Silahkan sisipkan kode diatas untuk ditempatkan file .php dari template wordpress anda.