{"id":1664,"date":"2016-05-26T18:22:33","date_gmt":"2016-05-26T09:22:33","guid":{"rendered":"http:\/\/tcd-manual.net\/?p=1664"},"modified":"2021-04-30T21:11:29","modified_gmt":"2021-04-30T12:11:29","slug":"%e5%95%86%e5%93%81%e4%b8%80%e8%a6%a7%e3%81%ae%e8%a1%a8%e7%a4%ba%e9%a0%86%e3%82%92%e9%99%8d%e9%a0%86%e3%81%b8%e5%a4%89%e6%9b%b4%e3%81%99%e3%82%8b","status":"publish","type":"post","link":"https:\/\/tcd-manual.net\/?p=1664","title":{"rendered":"TCD\u30c6\u30fc\u30dePrecious\uff1a\u5546\u54c1\u4e00\u89a7\u306e\u8868\u793a\u9806\u3092\u964d\u9806\u3078\u5909\u66f4\u3059\u308b"},"content":{"rendered":"<h4 class=\"style_headline2\"><span>Q.<\/span>\u5546\u54c1\u4e00\u89a7\u3084\u5546\u54c1\u30ab\u30c6\u30b4\u30ea\u30fc\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u8868\u793a\u3092\u964d\u9806\u306b\u5909\u66f4\u3057\u305f\u3044<\/h4>\n<p>\u5546\u54c1\u4e00\u89a7\u30da\u30fc\u30b8\u3084\u3001\u5546\u54c1\u30ab\u30c6\u30b4\u30ea\u30fc\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u4e00\u89a7\u3067\u306f\u5546\u54c1\u8a18\u4e8b\u304c\u65b0\u7740\u9806\u3067\u8868\u793a\u3055\u308c\u307e\u3059\u304c\u3001\u6295\u7a3f\u65e5\u6642\u306e\u53e4\u3044\u9806\u306b\u8868\u793a\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n<h4 class=\"style_headline2\"><span>A.<\/span>\u4e0b\u8a18\u306ephp\u30d5\u30a1\u30a4\u30eb\u306e\u8a72\u5f53\u7b87\u6240\u3092\u7de8\u96c6\u3057\u3066\u304f\u3060\u3055\u3044<\/h4>\n<p><b>\u7de8\u96c6\u3059\u308b\u30d5\u30a1\u30a4\u30eb\uff1a<\/b>functions.php<br \/>\n<b>\u7de8\u96c6\u3059\u308b\u7b87\u6240\uff1a<\/b><\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">\r\n\/\/ \u5546\u54c1\u30a2\u30fc\u30ab\u30a4\u30d6\u30da\u30fc\u30b8\u306e\u8868\u793a\u4ef6\u6570\u3092\u5909\u66f4\r\nfunction change_product_num($wp_query){\r\n  $options = get_desing_plus_option();\r\n  $product_archive_num = $options&#x5B;'product_archive_num'];\r\n  if(!is_admin() &amp;&amp; $wp_query-&gt;is_main_query() &amp;&amp;\r\n$wp_query-&gt;is_post_type_archive('product')){\r\n    $wp_query-&gt;set('posts_per_page',$product_archive_num);\r\n  }\r\n}\r\nadd_action('pre_get_posts', 'change_product_num');\r\n\r\nfunction change_product_num2($wp_query){\r\n  $options = get_desing_plus_option();\r\n  $product_archive_num = $options&#x5B;'product_archive_num'];\r\n  if(!is_admin() &amp;&amp; $wp_query-&gt;is_main_query() &amp;&amp;\r\n$wp_query-&gt;is_tax('product-cat')){\r\n    $wp_query-&gt;set('posts_per_page',$product_archive_num);\r\n  }\r\n}\r\nadd_action('pre_get_posts', 'change_product_num2');\r\n<\/pre>\n<p>\u3000\u3000\u2193<\/p>\n<pre class=\"brush: php; highlight: [8,9,20,21]; title: ; notranslate\" title=\"\">\r\n\/\/ \u5546\u54c1\u30a2\u30fc\u30ab\u30a4\u30d6\u30da\u30fc\u30b8\u306e\u8868\u793a\u4ef6\u6570\u3092\u5909\u66f4\r\nfunction change_product_num($wp_query){\r\n  $options = get_desing_plus_option();\r\n  $product_archive_num = $options&#x5B;'product_archive_num'];\r\n  if(!is_admin() &amp;&amp; $wp_query-&gt;is_main_query() &amp;&amp;\r\n$wp_query-&gt;is_post_type_archive('product')){\r\n    $wp_query-&gt;set('posts_per_page',$product_archive_num);\r\n    $wp_query-&gt;set( 'orderby', 'date' );\r\n    $wp_query-&gt;set( 'order', 'ASC' );\r\n  }\r\n}\r\nadd_action('pre_get_posts', 'change_product_num');\r\n\r\nfunction change_product_num2($wp_query){\r\n  $options = get_desing_plus_option();\r\n  $product_archive_num = $options&#x5B;'product_archive_num'];\r\n  if(!is_admin() &amp;&amp; $wp_query-&gt;is_main_query() &amp;&amp;\r\n$wp_query-&gt;is_tax('product-cat')){\r\n    $wp_query-&gt;set('posts_per_page',$product_archive_num);\r\n    $wp_query-&gt;set( 'orderby', 'date' );\r\n    $wp_query-&gt;set( 'order', 'ASC' );\r\n  }\r\n}\r\nadd_action('pre_get_posts', 'change_product_num2');\r\n<\/pre>\n<p>\u203b\u30cf\u30a4\u30e9\u30a4\u30c8\u90e8\u5206\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Q.\u5546\u54c1\u4e00\u89a7\u3084\u5546\u54c1\u30ab\u30c6\u30b4\u30ea\u30fc\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u8868\u793a\u3092\u964d\u9806\u306b\u5909\u66f4\u3057\u305f\u3044 \u5546\u54c1\u4e00\u89a7\u30da\u30fc\u30b8\u3084\u3001\u5546\u54c1\u30ab\u30c6\u30b4\u30ea\u30fc\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u4e00\u89a7\u3067\u306f\u5546\u54c1\u8a18\u4e8b\u304c\u65b0\u7740\u9806\u3067\u8868\u793a\u3055\u308c\u307e\u3059\u304c\u3001\u6295\u7a3f\u65e5\u6642\u306e\u53e4\u3044\u9806\u306b\u8868\u793a\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002 A.\u4e0b\u8a18\u306ephp\u30d5\u30a1 [&hellip;]","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[32],"tags":[127,283,270,408],"class_list":["post-1664","post","type-post","status-publish","format-standard","hentry","category-tcd019","tag-127","tag-283","tag-270","tag-408"],"_links":{"self":[{"href":"https:\/\/tcd-manual.net\/index.php?rest_route=\/wp\/v2\/posts\/1664","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tcd-manual.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tcd-manual.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tcd-manual.net\/index.php?rest_route=\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/tcd-manual.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1664"}],"version-history":[{"count":0,"href":"https:\/\/tcd-manual.net\/index.php?rest_route=\/wp\/v2\/posts\/1664\/revisions"}],"wp:attachment":[{"href":"https:\/\/tcd-manual.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tcd-manual.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tcd-manual.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}