WordPress JSON形式データ取得機能 「REST API」
2017-03-22
WordPress4.7より 「REST API」がプラグイン不要で利用可能になりました。
JSONデータ取得
https://victrive.com/memo/wp-json/wp/v2/posts
アイキャッチ画像等の情報を付加して取得
https://victrive.com/memo/wp-json/wp/v2/posts?_embed
特定の記事(例:投稿ID=81)
https://victrive.com/memo/wp-json/wp/v2/posts/81
カテゴリー情報取得
https://victrive.com/memo/wp-json/wp/v2/categories
タグ情報取得
https://victrive.com/memo/wp-json/wp/v2/tags
件数を指定(例:5件)して取得
https://victrive.com/memo/wp-json/wp/v2/posts/?per_page=5
キーワードを指定(例:css)して取得
https://victrive.com/memo/wp-json/wp/v2/posts/?s=css