├── README.md ├── img ├── clock.jpg ├── dessert.jpg ├── egg.jpg ├── hook.jpg ├── images.txt ├── jar.jpg ├── lemon.jpg ├── para.jpg ├── pen.jpg ├── popcorn.jpg ├── road.jpg ├── spice.jpg └── wine.jpg ├── import ├── pages.xml └── posts.xml ├── settings ├── 7-1-color.txt ├── 7-1-custom.txt ├── 7-1-font.txt ├── 7-2-1-css-both.txt ├── 7-2-1-css-front.txt ├── 7-2-2-block-list.txt ├── 7-2-2-block-posttype.txt ├── 7-2-2-block.txt ├── 7-2-3-block-template-lock.txt └── 7-2-3-block-template.txt ├── support.pdf └── themes ├── mytheme ├── functions.php ├── index.php ├── screenshot.png └── style.css ├── mytheme4 ├── functions.php ├── index.php ├── screenshot.png └── style.css ├── mytheme5 ├── editor-style.css ├── functions.php ├── index.php ├── screenshot.png └── style.css ├── mytheme6 ├── archive.php ├── editor-style.css ├── footer.php ├── functions.php ├── header.php ├── home.php ├── index.php ├── screenshot.png ├── sidebar.php ├── single.php └── style.css └── mytheme7 ├── archive.php ├── editor-style.css ├── footer.php ├── functions.php ├── header.php ├── home.php ├── index.php ├── screenshot.png ├── sidebar.php ├── single.php └── style.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/README.md -------------------------------------------------------------------------------- /img/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/clock.jpg -------------------------------------------------------------------------------- /img/dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/dessert.jpg -------------------------------------------------------------------------------- /img/egg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/egg.jpg -------------------------------------------------------------------------------- /img/hook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/hook.jpg -------------------------------------------------------------------------------- /img/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/images.txt -------------------------------------------------------------------------------- /img/jar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/jar.jpg -------------------------------------------------------------------------------- /img/lemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/lemon.jpg -------------------------------------------------------------------------------- /img/para.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/para.jpg -------------------------------------------------------------------------------- /img/pen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/pen.jpg -------------------------------------------------------------------------------- /img/popcorn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/popcorn.jpg -------------------------------------------------------------------------------- /img/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/road.jpg -------------------------------------------------------------------------------- /img/spice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/spice.jpg -------------------------------------------------------------------------------- /img/wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/img/wine.jpg -------------------------------------------------------------------------------- /import/pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/import/pages.xml -------------------------------------------------------------------------------- /import/posts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/import/posts.xml -------------------------------------------------------------------------------- /settings/7-1-color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-1-color.txt -------------------------------------------------------------------------------- /settings/7-1-custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-1-custom.txt -------------------------------------------------------------------------------- /settings/7-1-font.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-1-font.txt -------------------------------------------------------------------------------- /settings/7-2-1-css-both.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-1-css-both.txt -------------------------------------------------------------------------------- /settings/7-2-1-css-front.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-1-css-front.txt -------------------------------------------------------------------------------- /settings/7-2-2-block-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-2-block-list.txt -------------------------------------------------------------------------------- /settings/7-2-2-block-posttype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-2-block-posttype.txt -------------------------------------------------------------------------------- /settings/7-2-2-block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-2-block.txt -------------------------------------------------------------------------------- /settings/7-2-3-block-template-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-3-block-template-lock.txt -------------------------------------------------------------------------------- /settings/7-2-3-block-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/settings/7-2-3-block-template.txt -------------------------------------------------------------------------------- /support.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/support.pdf -------------------------------------------------------------------------------- /themes/mytheme/functions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mytheme/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mytheme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme/screenshot.png -------------------------------------------------------------------------------- /themes/mytheme/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/mytheme4/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme4/functions.php -------------------------------------------------------------------------------- /themes/mytheme4/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme4/index.php -------------------------------------------------------------------------------- /themes/mytheme4/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme4/screenshot.png -------------------------------------------------------------------------------- /themes/mytheme4/style.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | Theme Name: MY THEME 4 4 | Author: CATWALK 5 | Description: オリジナルテーマです 6 | Version: 1.0 7 | */ 8 | -------------------------------------------------------------------------------- /themes/mytheme5/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme5/editor-style.css -------------------------------------------------------------------------------- /themes/mytheme5/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme5/functions.php -------------------------------------------------------------------------------- /themes/mytheme5/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme5/index.php -------------------------------------------------------------------------------- /themes/mytheme5/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme5/screenshot.png -------------------------------------------------------------------------------- /themes/mytheme5/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme5/style.css -------------------------------------------------------------------------------- /themes/mytheme6/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/archive.php -------------------------------------------------------------------------------- /themes/mytheme6/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/editor-style.css -------------------------------------------------------------------------------- /themes/mytheme6/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/footer.php -------------------------------------------------------------------------------- /themes/mytheme6/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/functions.php -------------------------------------------------------------------------------- /themes/mytheme6/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/header.php -------------------------------------------------------------------------------- /themes/mytheme6/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/home.php -------------------------------------------------------------------------------- /themes/mytheme6/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/index.php -------------------------------------------------------------------------------- /themes/mytheme6/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/screenshot.png -------------------------------------------------------------------------------- /themes/mytheme6/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/sidebar.php -------------------------------------------------------------------------------- /themes/mytheme6/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/single.php -------------------------------------------------------------------------------- /themes/mytheme6/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme6/style.css -------------------------------------------------------------------------------- /themes/mytheme7/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/archive.php -------------------------------------------------------------------------------- /themes/mytheme7/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/editor-style.css -------------------------------------------------------------------------------- /themes/mytheme7/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/footer.php -------------------------------------------------------------------------------- /themes/mytheme7/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/functions.php -------------------------------------------------------------------------------- /themes/mytheme7/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/header.php -------------------------------------------------------------------------------- /themes/mytheme7/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/home.php -------------------------------------------------------------------------------- /themes/mytheme7/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/index.php -------------------------------------------------------------------------------- /themes/mytheme7/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/screenshot.png -------------------------------------------------------------------------------- /themes/mytheme7/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/sidebar.php -------------------------------------------------------------------------------- /themes/mytheme7/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/single.php -------------------------------------------------------------------------------- /themes/mytheme7/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebisucom/wordpress-note/HEAD/themes/mytheme7/style.css --------------------------------------------------------------------------------