This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aside id="sidebar"> | |
<?php dynamic_sidebar(); ?> | |
</aside> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(have_posts()) { | |
echo '<h2 class="post-title">'.$title.'</h2>'; | |
// 固定ページ "category-information-acquisition" の本文を挿入する | |
$cat_discription_page = get_page_by_path('category-information-acquisition'); | |
if(isset($cat_discription_page)) { | |
echo '<div class="post-content">'.apply_filters('the_content', $cat_discription_page->post_content).'</div><hr />'; | |
} | |
while(have_posts()) { | |
the_post(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v0.min.js"></script> | |
<style type="text/css"> | |
h1 { | |
font-size: 16px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v0.min.js"></script> | |
<style type="text/css"> | |
h1 { | |
font-size: 16px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding:utf-8 | |
''' | |
Created on 2014/03/27 | |
@author: hitsuji | |
''' | |
import csv | |
# 置換リストをCSVファイルで読み込む | |
words_filename = 'replace_words' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
港南区 | id141119 | |
---|---|---|
鶴見区 | id141011 | |
神奈川区 | id141020 | |
西区 | id141038 | |
中区 | id141046 | |
南区 | id141054 | |
保土ケ谷区 | id141062 | |
磯子区 | id141071 | |
金沢区 | id141089 | |
港北区 | id141097 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
register_sidebar(array( | |
'name' => 'Sidebar', | |
'before_widget' => '<li>', | |
'after_widget' => '</li>', | |
'before_title' => '<h2>', | |
'after_title' => '</h2>' | |
) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="<?php bloginfo('charset'); ?>" /> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
<title><?php bloginfo('name'); ?></title> | |
</head> | |
<body> | |
<ol> | |
<?php dynamic_sidebar(); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<link rel="stylesheet" href="http://localtest.net/wp-content/themes/sample01/style.css" type="text/css" /> | |
<title>Hitsuji x Web</title> | |
</head> | |
<body> | |
<ol> | |
<li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding:utf-8 | |
''' | |
Created on 2014/03/27 | |
@author: Tae Matsumoto | |
CSVファイルを読み込み、同名のJSONファイルを出力します。 | |
''' | |
import csv, json |
OlderNewer