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
cityid | name | |
---|---|---|
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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'); ?>" /> | |
<title><?php bloginfo('name'); ?></title> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
</head> | |
<body> | |
<?php echo 'Hello, welcome to WordPress!'; ?> |
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
/* | |
Theme Name: Wordpress sample theme for training | |
Theme URL: http://wordpress.hitsuji.me | |
Description: This is training theme. | |
Author: Tae Matsumoto | |
Version: 1.1 | |
*/ |
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" /> | |
<title>HitsujixWordpress</title> | |
<link rel="stylesheet" href="http://127.0.0.1:8080/wordpress/wp-content/themes/Training/style.css" type="text/css" /> | |
</head> | |
<body> | |
Hello, welcome to Wordpress! |
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'); ?>" /> | |
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
</head> | |
<body> |
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
<body> | |
<div id="container"><!-- 全体を中央寄せ--> | |
<div id="header"> | |
<h1><?php bloginfo('name'); ?></h1> | |
</div> <!–header–> | |
<div id="contents"> | |
<?php if(have_posts()): while(have_posts()): the_post(); ?> | |
<div class="post"> | |
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
<?php the_content(); ?> |
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
/* | |
Theme Name: Wordpress sample theme for training | |
Theme URL: http://wordpress.hitsuji.me | |
Description: This is training theme. | |
Author: Tae Matsumoto | |
Version: 1.3 | |
*/ | |
/*---------------------------------------------------------*/ | |
/* General */ |
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'); ?>" /> | |
<title><?php bloginfo('name'); ?></title> | |
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" /> | |
</head> | |
<body> | |
<?php echo 'Hello, welcome to Wordpress!'; ?> | |
</body> |
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
/* | |
Theme Name: Hitsuji Sample | |
Theme URL: http://wordpress.hitsuji.me/ | |
Description: This is training theme. | |
Author: Hitsuji | |
Version: 1.0 | |
*/ |