SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【WordPress】 ループ中のグローバル変数$postの内容

$postには、こんなプロパティがあるのですね というメモ。

stdClass::__set_state(array(
 'ID' => 1,
 'post_author' => '1',
 'post_date' => '2010-04-22 14:27:19',
 'post_date_gmt' => '2010-04-22 05:27:19',
 'post_content' => '本文',
 'post_title' => 'タイトル',
 'post_excerpt' => '',
 'post_status' => 'publish',
 'comment_status' => 'closed',
 'ping_status' => 'closed',
 'post_password' => '',
 'post_name' => 'スラッグ',
 'to_ping' => '',
 'pinged' => '',
 'post_modified' => '2010-04-22 21:06:59',
 'post_modified_gmt' => '2010-04-22 12:06:59',
 'post_content_filtered' => '',
 'post_parent' => 0,
 'guid' => 'http://127.0.0.1/wordpress/?page_id=1',
 'menu_order' => 1,
 'post_type' => 'page',
 'post_mime_type' => '',
 'comment_count' => '0',
 'ancestors' => 
 array (
 ),
 'filter' => 'raw',
))
投稿IDが欲しいとき
$post->ID
投稿者IDを使いたいとき
$post->post_author
投稿日時が欲しいとき
$post->post_date
編集日時が欲しいとき
$post->post_modified
本文
$post->post_content
タイトル
$post->post_title
この投稿のスラッグ
$post->post_name
親ページIDを知りたいとき
$post->post_parent

関連するメモ

コメント