{"id":142,"date":"2020-10-17T18:43:00","date_gmt":"2020-10-17T09:43:00","guid":{"rendered":"https:\/\/ksrd.jp\/koubou\/wordpress\/?p=142"},"modified":"2021-12-02T13:00:32","modified_gmt":"2021-12-02T04:00:32","slug":"wp_query%e3%82%92%e4%bd%bf%e3%81%86","status":"publish","type":"post","link":"https:\/\/ksrd.jp\/koubou\/wordpress\/2020\/10\/wp_query%e3%82%92%e4%bd%bf%e3%81%86\/","title":{"rendered":"wp_query\u3092\u4f7f\u3046"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"> <strong>\u5916\u90e8\u304b\u3089\uff37\uff30\u306e\u6295\u7a3f\u8a18\u4e8b\u3092\u53d6\u308a\u51fa\u3057\u7de8\u96c6\u3059\u308b<\/strong> <\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">\uff11\uff0e\u5916\u90e8\u304b\u3089\u306e\u4f7f\u7528\u3092\u59cb\u3081\u308b<\/h4>\n\n\n\n<p>\u3000\u300cwp-load.php\u300d\u3092\u547c\u3073\u51fa\u3057\u3001\u3053\u308c\u304b\u3089\uff37\uff30\u6295\u7a3f\u8a18\u4e8b\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3059\u308b\u3053\u3068\u3092\u5ba3\u8a00\u3059\u308b\u3002\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30fc\u69cb\u9020\u3092\u4e8b\u524d\u306b\u8abf\u67fb\u3057\u3001\u300cwp-load.php\u300d\u306e\u5834\u6240\u3092\u6307\u5b9a\u3059\u308b\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-php\" data-lang=\"PHP\"><code>include_once &quot;\u25cf\u25cf\u25cf\u25cf\/wordpress\/wp-load.php&quot;; <\/code><\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">\uff12\uff0e\u300cwp_query\u300d\u3068\u306f<\/h4>\n\n\n\n<p>\u3000\u6295\u7a3f\u8a18\u4e8b\u306e\u30bf\u30a4\u30c8\u30eb\u3084\u672c\u6587\u306e\u5185\u5bb9\u3092\u53d6\u5f97\u3059\u308b\u969b\u306b\u300cWP_Query\u300d\u3068\u3044\u3063\u305f\u30af\u30e9\u30b9\u3092\u4f7f\u7528\u3059\u308b\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\uff13\uff0eWP_Query\u306e\u4f7f\u7528\u4f8b<\/h4>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-php\" data-lang=\"PHP\"><code>\/\/ \u53d6\u5f97\u6761\u4ef6\u3092\u8a2d\u5b9a\u3059\u308b\n\t$args = Array\n\t\t(\n\t\t    &#39;post_type&#39; =&gt; &#39;post&#39;,      \/\/ \u6295\u7a3f\u3092\u5bfe\u8c61\u3068\u3059\u308b\n\t\t    &#39;posts_per_page&#39; =&gt; -1,    \t\/\/ \u8868\u793a\u3059\u308b\u6295\u7a3f\u6570(-1\u3067\u5168\u6295\u7a3f)\n\t\t);\t\n\t\n\/\/ \u30af\u30a8\u30ea\u306e\u5b9a\u7fa9\n\t$wp_query = new WP_Query( $args );\u3000\/\/wp_query\u306b\u6761\u4ef6\u3092\u6e21\u3059\n \n\/\/ \u30eb\u30fc\u30d7\n\tif ( $wp_query-&gt;have_posts() ) \u3000\u3000\u3000\/\/\u6295\u7a3f\u306e\u6709\u7121\u3092\u78ba\u8a8d\u3059\u308b\n\t  {\n\t    while ( $wp_query-&gt;have_posts() ) \u3000\/\/\u6295\u7a3f\u306e\u6700\u5f8c\u307e\u3067\u7e70\u308a\u8fd4\u3059\n\t    \t{    \t\n\t\t      $wp_query-&gt;the_post();       \/\/\u5185\u90e8\u5909\u6570\u3068\u30b0\u30ed\u30fc\u30d0\u30eb\u5909\u6570\u3092\u7d10\u4ed8\u3051\n\t\t      $posttitle \t\t= get_the_title();\u3000\u3000\u3000\u3000\u3000\/\/\u30bf\u30a4\u30c8\u30eb\n\t\t      $postcategory \t= get_the_category();\u3000\u3000\/\/\u30ab\u30c6\u30b4\u30ea\u30fc\n\t\t\t\t\tforeach($postcategory as $cat) \n\t\t\t\t     {\t\n\t\t\t\t     }\t        \n\t\t      $posttags = \tget_the_tags();\u3000\u3000\u3000\u3000\u3000\u3000 \/\/\u30bf\u30b0\n\t\t\t\t\tforeach($posttags as $tag) \n\t\t\t\t     {\t\n\t\t\t\t     }\t     \n\t\t      $postexcerpt \t= get_the_excerpt();\u3000\u3000\u3000\u3000\/\/\u629c\u7c8b\n\t\t      $postpermalink \t= get_the_permalink();\u3000 \/\/\u30d1\u30fc\u30de\u30ea\u30f3\u30af\n\t\t      $postdate\t \t= get_the_date();            \/\/\u66f4\u65b0\u65e5            \n\t    \t}\n\t  } \t\n\t\n\t\n\/\/ \u6295\u7a3f\u30c7\u30fc\u30bf\u306e\u30ea\u30bb\u30c3\u30c8\n\twp_reset_postdata();\t\n<\/code><\/pre><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5916\u90e8\u304b\u3089\u6295\u7a3f\u8a18\u4e8b\u3092\u81ea\u7531\u306b\u53d6\u308a\u51fa\u3059\u3002<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7,3],"tags":[25],"class_list":["post-142","post","type-post","status-publish","format-standard","hentry","category-7","category-3","tag-wordpress"],"_links":{"self":[{"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/posts\/142","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/comments?post=142"}],"version-history":[{"count":0,"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/posts\/142\/revisions"}],"wp:attachment":[{"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/media?parent=142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/categories?post=142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ksrd.jp\/koubou\/wordpress\/wp-json\/wp\/v2\/tags?post=142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}