Skip to content

Instantly share code, notes, and snippets.

@mhige
Last active September 20, 2018 01:53
Show Gist options
  • Save mhige/0c69f2ebbd9f3570f1225a5b51f960c2 to your computer and use it in GitHub Desktop.
Save mhige/0c69f2ebbd9f3570f1225a5b51f960c2 to your computer and use it in GitHub Desktop.
Wordpressのget_post関数で記事IDを指定して記事情報を取得し、その中からタイトル情報を出力
<?php
// ID9999の記事の"タイトル"を出力
echo get_post( 9999 )->post_title;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment