{"id":1276,"date":"2018-05-08T20:38:54","date_gmt":"2018-05-08T11:38:54","guid":{"rendered":"http:\/\/4koma-web.com\/coding\/?p=1276"},"modified":"2018-05-08T20:38:54","modified_gmt":"2018-05-08T11:38:54","slug":"%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%a0%e6%8a%95%e7%a8%bf%e3%82%bf%e3%82%a4%e3%83%97%e3%81%ae%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e5%88%a5%e3%82%a2%e3%83%bc%e3%82%ab%e3%82%a4%e3%83%96%e3%83%9a%e3%83%bc","status":"publish","type":"post","link":"https:\/\/4koma-web.com\/coding\/%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%a0%e6%8a%95%e7%a8%bf%e3%82%bf%e3%82%a4%e3%83%97%e3%81%ae%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e5%88%a5%e3%82%a2%e3%83%bc%e3%82%ab%e3%82%a4%e3%83%96%e3%83%9a%e3%83%bc\/","title":{"rendered":"\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u30bf\u30a4\u30d7\u306e\u30ab\u30c6\u30b4\u30ea\u5225\u30a2\u30fc\u30ab\u30a4\u30d6\u30da\u30fc\u30b8\u306e\u4f5c\u6210"},"content":{"rendered":"<p>\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u30bf\u30a4\u30d7\u3067\u8a2d\u5b9a\u3057\u305f\u30ab\u30c6\u30b4\u30ea\u4e00\u89a7\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3057\u3001\u305d\u308c\u305e\u308c\u306e\u89aa\u30ab\u30c6\u30b4\u30ea\u30fc\u304b\u3089\u5b50\u30ab\u30c6\u30b4\u30ea\u30fc\u306b\u968e\u5c64\u3092\u8e0f\u3080\u3088\u3046\u306a\u30da\u30fc\u30b8\u306e\u4f5c\u6210\u3092\u3059\u308b\u5834\u5408<\/p>\n<p>archive-\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u540d.php<\/p>\n<pre>\r\n<?php\r\nget_header(); ?>\r\n    <!--****** \/container ******-->\r\n\t<div id=\"container\">\r\n\r\n<div class=\"gNaviWrap\">\r\n<ul id=\"gNavi\" class=\"list_style01\">\r\n<?php wp_list_categories(array('title_li' => '', 'taxonomy' => '\u30bf\u30af\u30bd\u30ce\u30df\u30fc\u540d')); ?>\r\n<\/ul>\r\n<\/div>\r\n\t\r\n<section>\r\n<?php\r\n\/\/$paged = (int) get_query_var('paged');\r\n$paged = get_query_var('paged') ? get_query_var('paged') : 1;\r\n$args = array(\r\n\t'posts_per_page' => 10,\r\n\t'paged' => $paged,\r\n\t'orderby' => 'post_date',\r\n\t'order' => 'DESC',\r\n\t'post_type' => '\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u540d',\r\n\t'post_status' => 'publish'\r\n);\r\n$the_query = new WP_Query($args);\r\nif ( $the_query->have_posts() ) :\r\n\twhile ( $the_query->have_posts() ) : $the_query->the_post();\r\n?>\r\n\t\t\t\r\n<span class=\"date\"><time datetime=\"<?php the_time('Y-m-d'); ?>\"><?php the_time('Y.m.d'); ?><\/time><\/span>\r\n<h2 class=\"h2Style03\"><a href=\"<?php the_permalink(); ?>\"><?php the_title(); ?><\/a><\/h2>\r\n<p><?php the_excerpt(); ?><\/p>\r\n<\/div>\r\n\t\t\t\t\r\n<?php endwhile; endif; ?>\r\n<\/section>\r\n\t<\/div>\r\n    <!--****** container\/ ******-->\r\n<?php\r\nget_footer();\r\n<\/pre>\n<p>taxonomy-\u30bf\u30af\u30bd\u30ce\u30df\u30fc\u540d.php <!--\u30bf\u30af\u30bd\u30ce\u30df\u30fc\u540d\u306ffunction.php\u3067register_taxonomy\u306b\u6307\u5b9a\u3057\u305f\u3082\u306e--><\/p>\n<pre>\r\n<?php get_header(); ?>\r\n<section>\r\n<?php query_posts($query_string . \"&#038;pst_type=jiseki&#038;posts_per_page=30&#038;paged='.$paged\"); ?>\r\n<?php if (have_posts()) :  while (have_posts()) : the_post(); ?>\r\n<div>\r\n\r\n\t<?php\r\n$terms = get_the_terms( get_the_ID(), '\u30bf\u30af\u30bd\u30ce\u30df\u30fc\u540d' );\r\nif ( !empty($terms) ) : if ( !is_wp_error($terms) ) :\r\n?>\r\n\r\n<?php foreach( $terms as $term ) : ?>\r\n<span class=\"icon01 <?php echo \"$term->slug\"; ?>\"><?php echo $term->name; ?><\/span>\r\n<?php endforeach; ?>\r\n\r\n<?php endif; endif; ?>\r\n\t\r\n\t<h2 class=\"h2Style03\"><?php the_title(); ?><\/h2>\r\n\t<p><?php the_content(); ?><\/p>\r\n<\/div>\r\n<?php endwhile; endif; ?>\r\n<\/section>\r\n<?php get_footer(); ?>\u200b\r\n<\/pre>\n<p>\u3053\u306e\u4e8c\u3064\u306ephp\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308c\u3070\u5927\u30ab\u30c6\u30b4\u30ea\u30fc\u3068\u30ab\u30c6\u30b4\u30ea\u30fc\u5225\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30da\u30fc\u30b8\u304c\u4f5c\u6210\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u30bf\u30a4\u30d7\u3067\u8a2d\u5b9a\u3057\u305f\u30ab\u30c6\u30b4\u30ea\u4e00\u89a7\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3057\u3001\u305d\u308c\u305e\u308c\u306e\u89aa\u30ab\u30c6\u30b4\u30ea\u30fc\u304b\u3089\u5b50\u30ab\u30c6\u30b4\u30ea\u30fc\u306b\u968e\u5c64\u3092\u8e0f\u3080\u3088\u3046\u306a\u30da\u30fc\u30b8\u306e\u4f5c\u6210\u3092\u3059\u308b\u5834\u5408 archive-\u30ab\u30b9\u30bf\u30e0\u6295\u7a3f\u540d.php<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_locale":"","_original_post":"","footnotes":""},"categories":[1],"tags":[],"publishpress_future_action":{"enabled":false,"date":"2026-04-21 23:17:05","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"category"},"_links":{"self":[{"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/posts\/1276"}],"collection":[{"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/comments?post=1276"}],"version-history":[{"count":0,"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/posts\/1276\/revisions"}],"wp:attachment":[{"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/media?parent=1276"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/categories?post=1276"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/4koma-web.com\/coding\/wp-json\/wp\/v2\/tags?post=1276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}