在 WordPress 裡面我們可以透過 have_posts() 這個函式來取得文章的資料,再用 the_post() 把資料顯示出來。
基本的用法如下:
if ( have_posts() ) { while ( have_posts() ) { //如果有文章就用回圈跑出來 the_post(); //取得文章內容 }
當經由 the_post() 取得文章內容後,就可以在用以下函式把個別的資料取出:
//執行完這行後 the_post(); //取得標題 echo the_title(); //取得作者 echo the_author(); //時間 echo the_time() ; //文章 id echo the_ID() ; //內容 echo the_content() ;
大概像這樣,其他更多可以看 WordPress the_post(); 的文件說明。