(モデレーターのメモ:タイトルはもともと「ワードプレス投稿オブジェクトのすべての変数は何ですか?」)
WordPress Postオブジェクトに保存されている変数を知っている人はいますか?
(モデレーターのメモ:タイトルはもともと「ワードプレス投稿オブジェクトのすべての変数は何ですか?」)
WordPress Postオブジェクトに保存されている変数を知っている人はいますか?
回答:
Postオブジェクトは、主にwp_posts
データベーステーブルのクエリされた行であり、いくつかの追加機能があります。1つのコンテンツをダンプして、以下を確認するのは簡単です。
object(stdClass)
public 'ID' => int
public 'post_author' => string
public 'post_date' => string
public 'post_date_gmt' => string
public 'post_content' => string
public 'post_title' => string
public 'post_excerpt' => string
public 'post_status' => string
public 'comment_status' => string
public 'ping_status' => string
public 'post_password' => string
public 'post_name' => string
public 'to_ping' => string
public 'pinged' => string
public 'post_modified' => string
public 'post_modified_gmt' => string
public 'post_content_filtered' => string
public 'post_parent' => int
public 'guid' => string
public 'menu_order' => int
public 'post_type' => string
public 'post_mime_type' => string
public 'comment_count' => string
public 'filter' => string
var_dump()
ftw。:)レコードについては、鉱山はxdebug-enhancedバージョンでしたが、それはプレゼンテーションにのみ影響します。ancestors
フィールドについて知らない、実際に使用されたフィールドに遭遇したことはありません。
を使用してアクセスできるものを参照している場合$post
(を使用して取得var_dump
):