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 login_css() { | |
wp_enqueue_style( 'login_css', get_template_directory_uri() . '/css/login.css' ); | |
} | |
add_action('login_head', 'login_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 wpc_url_login(){ | |
return "http://example.com/"; // ここに変更するURL | |
} | |
add_filter('login_headerurl', 'wpc_url_login'); |
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
.image-slider { | |
position:relative; | |
display: inline-block; | |
} | |
.image-slider > div { | |
position: absolute; | |
top: 0; bottom: 0; left: 0; | |
width: 50%; /* 初期の幅 */ | |
max-width: 100%; |
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
<div class="image-slider"> | |
<div> | |
<img src="old-man-before.jpg" alt="before"> | |
</div> | |
<img src="old-man-after.jpg" alt="after"> | |
</div> |
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
<dl> | |
<dt>スーパーカブ</dt> | |
<dd> | |
<p>ホンダの世界最多量産のオートバイで、高性能・高耐久性のゆえ、世界最多量産ならびに販売台数を記録している。</p> | |
</dd> | |
<dt>ヤマハ・メイト</dt> | |
<dd> | |
<p>ヤマハ発動機(ヤマハ)が1965年から2008年まで製造販売したビジネス用オートバイのこと。</p> | |
</dd> | |
</dl> |
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
<ol type="a"> | |
<li>りんご</li> | |
<li>バナナ</li> | |
<li>みかん</li> | |
<li>いちご</li> | |
</ol> |
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
<ol> | |
<li>富士山</li> | |
<li>北岳</li> | |
<li value="3">奥穂高岳</li> | |
<li value="3">間ノ岳</li> | |
<li value="5">槍ヶ岳</li> | |
</ol> |
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
<ol> | |
<li>りんご</li> | |
<li>バナナ</li> | |
<li>みかん</li> | |
<li>いちご</li> | |
</ol> |
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
<ul> | |
<li>トヨタの自動車 | |
<ul> | |
<li>クラウン</li> | |
<li>プリウス</li> | |
</ul> | |
</li> | |
<li>ホンダの自動車 | |
<ul> | |
<li>アコード</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
<ul> | |
<li>りんご</li> | |
<li>バナナ</li> | |
<li>みかん</li> | |
<li>いちご</li> | |
</ul> |