wordpress項目毎のデータ取得方法

$queryposts= 絞り込み条件
if (have_posts()) : query_posts($queryposts);
while (have_posts()) : the_post();
var_dump($post);で取得した配列の内容を確認できる。
記事IDの取得 $post->ID
タイトルの取得 $post->post_title
投稿データの取得 $post->post_content
抜粋データの取得 $post->post_excerpt
endwhile; endif;

wordpress