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
@charset "utf-8"; | |
/* | |
Theme Name:Portfolio Siteテーマ | |
*/ |
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 | |
// imgタグにwidth,height属性を追加しない設定 | |
add_filter('wp_img_tag_add_width_and_height_attr','__return_false'); |
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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Portfolio Site</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hamburgers/1.2.1/hamburgers.css"> | |
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/style.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
//スムーススクロール(同ページ内) | |
// ページ内の # で始まるアンカーをクリックした場合の処理 | |
$('a[href^="#"]').click(function(){ | |
// ヘッダーを固定しているので、その分をマイナスする | |
var headerHeight = $('header').outerHeight(); | |
// スクロールの速度 | |
var speed = 600; // ミリ秒 |
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
@charset "utf-8"; | |
*{ | |
padding: 0; | |
margin: 0; | |
} | |
ul{ | |
list-style: none; | |
} | |
a{ | |
text-decoration: none; |
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"> | |
<meta name="description" content="ページ外からのページ内リンク スムーススクロール"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>ページ外からのページ内リンク</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body class="other"> |
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"> | |
<meta name="description" content="ページ外からのページ内リンク スムーススクロール"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>ページ外からのページ内リンク</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> |