{"id":3519,"date":"2022-03-01T17:02:22","date_gmt":"2022-03-01T08:02:22","guid":{"rendered":"https:\/\/taitan916.info\/blog\/?p=3519"},"modified":"2024-02-20T17:23:01","modified_gmt":"2024-02-20T08:23:01","slug":"post-3519","status":"publish","type":"post","link":"https:\/\/taitan916.info\/blog\/archives\/3519","title":{"rendered":"WordPress\u306b\u3066ACF\u3067\u8a2d\u5b9a\u3057\u305f\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5024\u3092\u5143\u306b\u8a18\u4e8b\u3092\u4e26\u3079\u66ff\u3048\u308b\u65b9\u6cd5"},"content":{"rendered":"<p>WordPress\u306b\u3066<a href=\"https:\/\/ja.wordpress.org\/plugins\/advanced-custom-fields\/\" target=\"_blank\" rel=\"noopener\">Advanced Custom Fields<\/a>\u3067\u8a2d\u5b9a\u3057\u305f\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5024\u3092\u5143\u306b\u8a18\u4e8b\u306e\u30bd\u30fc\u30c8\u3057\u305f\u3044\u3002\u5177\u4f53\u7684\u306b\u306f\u8a18\u4e8b\u6bce\u306bYoutube\u306e\u3088\u3046\u306bGood \/ Bad\u30dc\u30bf\u30f3\u304c\u3042\u308a\u3001Good \/ Bad\u306e\u591a\u3044\u9806\u3067\u8a18\u4e8b\u3092\u30bd\u30fc\u30c8\u3057\u305f\u304b\u3063\u305f\u3002\u307e\u305f\u3001Good \/ Bad\u306e\u6570\u5024\u304c\u540c\u3058\u5834\u5408\u306f\u6295\u7a3f\u65e5\u6642\u3067\u30bd\u30fc\u30c8\u3057\u305f\u3044\u3002\u4ee5\u4e0b\u306b\u5bfe\u5fdc\u65b9\u6cd5\u3092\u30e1\u30e2\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>WP_Query\u306e\u5834\u5408<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?php\r\n$args = array(\r\n    'post_type' =&gt; 'post', \r\n    'paged' =&gt; $paged,\r\n    'posts_per_page' =&gt;10,\r\n    'meta_key' =&gt; 'good', \/\/ACF\u3067\u8a2d\u5b9a\u3059\u308b\u30d5\u30a3\u30fc\u30eb\u30c9\u540d\u3092\u6307\u5b9a\r\n    'orderby' =&gt; array(\r\n        'meta_value_num' =&gt; 'DESC', \/\/Good\u9806\u3067\u30bd\u30fc\u30c8\r\n        'date' =&gt; 'DESC', \/\/\u6295\u7a3f\u65e5\u6642\u3067\u30bd\u30fc\u30c8\r\n    ),\r\n);\r\n$my_query = new WP_Query($args);\r\n?&gt;<\/pre>\n<p>meta_value_num\u3068\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u30ab\u30b9\u30bf\u30e0\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u6570\u5024\u3068\u3057\u3066\u30bd\u30fc\u30c8\u3057\u3066\u304f\u308c\u308b\u3002meta_value\u3060\u3068\u6587\u5b57\u5217\u3068\u3057\u3066\u30bd\u30fc\u30c8\u3055\u308c\u308b\u306e\u3067\u6ce8\u610f\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>$query-&gt;set\u306e\u5834\u5408<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">$query-&gt;set('post_type', 'post' );\r\n$query-&gt;set('post_status', 'publish');\r\n$metaquery[] = array(\r\n    'meta1' =&gt; array(\r\n        'key' =&gt; 'good', \/\/ACF\u3067\u8a2d\u5b9a\u3059\u308b\u30d5\u30a3\u30fc\u30eb\u30c9\u540d\u3092\u6307\u5b9a\r\n        'type' =&gt; 'NUMERIC'\r\n    ),\r\n);\r\n$query-&gt;set('meta_query',$metaquery);\r\n$query-&gt;set( 'order', 'DESC' );\r\n$query-&gt;set('orderby',\r\n    array(\r\n        'meta1' =&gt; 'DESC', \/\/Good\u9806\u306b\u30bd\u30fc\u30c8\r\n        'date' =&gt; 'DESC', \/\/\u6295\u7a3f\u65e5\u6642\u3067\u30bd\u30fc\u30c8\r\n    )\r\n);<\/pre>\n<p>&nbsp;<\/p>\n<h2>\u6240\u611f<\/h2>\n<p>WP_Query\u306e\u65b9\u306f\u76f4\u611f\u7684\u306b\u5206\u304b\u308a\u3084\u3059\u3044\u304c$query-&gt;set\u306e\u65b9\u306f\u30a4\u30de\u30a4\u30c1\u3088\u304f\u5206\u304b\u3089\u308a\u3065\u3089\u3044\u2026\u2026\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress\u306b\u3066Advanced Custom Fields\u3067\u8a2d\u5b9a\u3057\u305f\u30ab\u30b9 ... <\/p>\n","protected":false},"author":1,"featured_media":1093,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24,41],"tags":[97],"class_list":["post-3519","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress","category-cms","tag-advanced-custom-fields"],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/3519","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/comments?post=3519"}],"version-history":[{"count":1,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/3519\/revisions"}],"predecessor-version":[{"id":4743,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/3519\/revisions\/4743"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media\/1093"}],"wp:attachment":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media?parent=3519"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/categories?post=3519"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/tags?post=3519"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}