WordPressのグローバル変数 $postで情報取得する方法

WordPressのグローバル変数 $postで情報取得する方法
$post->ID                     //投稿ID (int)
$post->post_author            //投稿者ID (string)
$post->post_date              //投稿日時 (string)
$post->post_date_gmt          //投稿日時(GMT) (string)
$post->post_content           //投稿内容 (string)
$post->post_title             //投稿タイトル (string)
$post->post_excerpt           //投稿内容(抜粋) (string)
$post->post_status            //投稿状態('publish'、'private'など) (string)
$post->comment_status         //コメント投稿状態('open'など) (string)
$post->ping_status            //トラックバック/ピンバック受付状態('open'など) (string)
$post->post_password          //パスワード(公開状態がパスワード保護時) (string)
$post->post_name              //スラッグ名(パーマリンク設定で%postname%使用時) (string)
$post->to_ping                //ピン通知 URL (string)
$post->pinged                 //ピン通知済み URL (string)
$post->post_modified          //更新日時 (string)
$post->post_modified_gmt      //更新日時(GMT) (string)
$post->post_content_filtered  //フィルター? (string)
$post->post_parent            //親ID  (固定ページや添付ファイルなどで使用) (int)
$post->guid                   //ページURL (デフォルト型) (string)
$post->menu_order             //固定ページの表示順序 (int)
$post->post_type              //投稿情報タイプ('post'、'page'など) (string)
$post->post_mime_type         //添付ファイルのときMIMEタイプ (string)
$post->comment_count          //コメント数 (int)
$post->filter                 //適用されたフィルター名('raw'など) (string)
$post->ancestors              //親やその親ページの投稿IDの配列(固定ページで親ページがある場合など) (array)

https://wemo.tech/400

こちら参考にさせていただきました。