switch_to_blogしてもカスタム投稿タイプは切り替わらない。
https://ja.forums.wordpress.org/topic/5939
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
| ACFよりも自由度が高い | |
| グループ化とグループ追加ができる。 | |
| ↓ここが詳しい | |
| http://kotori-blog.com/wordpress/customfieldtemplate_add/ |
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
| @mixin min($width: 960px) { | |
| @media only screen and (min-width: $width) { | |
| @content; | |
| } | |
| } | |
| @mixin max($width: 959px) { | |
| @media only screen and (max-width: $width) { | |
| @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
| sass --style expanded --watch hoge.scss:hoge.css |
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
| function getThumbnailUrl() { | |
| if ( get_post_thumbnail_id() ) { | |
| $thumbnailUrl = wp_get_attachment_image_src(get_post_thumbnail_id(), true)[0]; | |
| } else { | |
| $thumbnailUrl = get_template_directory_uri() . '/images/noimage.jpg'; | |
| } | |
| return $thumbnailUrl; | |
| } |
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
| @for $i from 0 through 11 { | |
| ul li:nth-of-type(#{$i + 1}) { transition-delay: #{$i * 80ms};} | |
| } |
###出典はこちら 元ネタのGist
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
| $about.removeClass(function(index, className) { | |
| return (className.match(/\bbg\d+/g) || []).join(' '); | |
| }); |
##WordPressテンプレート作成
###各ファイルの特徴
style.css
ここにテーマの情報も書く。メインのスタイル。
index.php
いろんなファイルがなかったら最後に参照されるファイル。
header.php
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
| function judgeNew($postedDate) { | |
| $past = 7; // 1 week | |
| if ( strtotime($postedDate) >= strtotime('-' . $past . ' day') ) { | |
| return true; | |
| } else { | |
| return false; | |
| } | |
| } |